代码搜索:queue

找到约 10,000 项符合「queue」的源代码

代码结果 10,000
www.eeworm.com/read/178378/9404389

cpp bankteller.cpp

//: C20:BankTeller.cpp // From Thinking in C++, 2nd Edition // at http://www.BruceEckel.com // (c) Bruce Eckel 1999 // Copyright notice in Copyright.txt // Using a queue and simulated multithread
www.eeworm.com/read/373390/9457782

cpp chat.cpp

/* File : chat.cpp */ #include #include #include #include "pthread.h" #include "Mysocket.h" #include "MyThread.h" #include "MySync.h" #include "TcpServThr.h"
www.eeworm.com/read/373369/9460924

java priorityblockingqueuedemo.java

//: concurrency/PriorityBlockingQueueDemo.java import java.util.concurrent.*; import java.util.*; import static net.mindview.util.Print.*; class PrioritizedTask implements Runnable, Comparable
www.eeworm.com/read/373348/9461903

txt 26.txt

CS 1355 Introduction to Programming in C Thursday 2006.12.14 Lecture notes (at http://r638-2.cs.nthu.edu.tw/C/notes/26.txt) Today: Chapter 12 continued A stack: last-in, first-out. No need to
www.eeworm.com/read/372716/9496325

cpp shiyan2.cpp

#include #include using namespace std; /*默认前提: a、等待队列都采用先来先得(FIFO)的占用策略。 b、初始时,占用资源的先后顺序和输入的程序顺序相同 */ //定义step结构来表示程序每步对资源的需要。 struct step //通过step结构,可以获得在多道程序中所需要用到的占用资源时
www.eeworm.com/read/176362/9501032

txt acdxini_readme.txt

[Main] gnugk_host=192.168.1.94 // gnugk ip gnugk_port=7000 // gnugk port listen_port=7001 // acdx http listener distribution_algorithm=LONGEST_IDLE // ROUND_ROBIN or FIRST_FIT can choose l
www.eeworm.com/read/176362/9501068

cpp acdconfig.cpp

/*============================================================= Function: Author: Leon Wang ===========================================================
www.eeworm.com/read/176362/9501094

cpp wqmanager.cpp

/*============================================================= Function: Author: Leon Wang =======================================================
www.eeworm.com/read/176362/9501162

cpp acdx.cpp

/*============================================================= Function: core call ACD entry Author: Leon Wang =====================================
www.eeworm.com/read/372507/9507085

h lqueue.h

// header file lqueue.h // linked queue #ifndef LinkedQueue_ #define LinkedQueue_ #include "node.h" #include "xcept.h" template class LinkedQueue { // FIFO objects public: