代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/416714/11016851

cpp queue.cpp

#include "stlexam.h" #pragma hdrstop /************************************************************************** * * queue.cpp - Example program of queues. See Class Reference Section * ****
www.eeworm.com/read/270960/11018338

hpp queue.hpp

/* The following code example is taken from the book * "The C++ Standard Library - A Tutorial and Reference" * by Nicolai M. Josuttis, Addison-Wesley, 1999 * * (C) Copyright Nicolai M. Josuttis 19
www.eeworm.com/read/416432/11025628

h queue.h

/* ****ROBOCON 2009 | BUPT TEAM******* * ------------------------------------------------------------------------ * FileName : queue.h * Version : 0.1 * Biref : Queue
www.eeworm.com/read/416432/11025632

c queue.c

/* ****ROBOCON 2009 | BUPT TEAM******* * ------------------------------------------------------------------------ * FileName : queue.c * Version : 0.1 * Brief : Queue
www.eeworm.com/read/470800/6908510

h queue.h

// queue.h -- interface for a queue #ifndef QUEUE_H_ #define QUEUE_H_ // This queue will contain Customer items class Customer { private: long arrive; // arrival time for customer
www.eeworm.com/read/470800/6908515

cpp queue.cpp

// queue.cpp -- Queue and Customer methods #include "queue.h" #include // (or stdlib.h) for rand() // Queue methods Queue::Queue(int qs) : qsize(qs) { front = rear = NULL
www.eeworm.com/read/470800/6908798

h queue.h

// queue.h -- interface for a queue #ifndef QUEUE_H_ #define QUEUE_H_ // This queue will contain Customer items class Customer { private: long arrive; // arrival time for customer
www.eeworm.com/read/470800/6908803

cpp queue.cpp

// queue.cpp -- Queue and Customer methods #include "queue.h" #include // (or stdlib.h) for rand() // Queue methods Queue::Queue(int qs) : qsize(qs) { front = rear = NULL
www.eeworm.com/read/470055/6923750

h queue.h

// specification file for an unlimited queue for storing bytes #ifndef CRYPTOPP_QUEUE_H #define CRYPTOPP_QUEUE_H #include "simple.h" //#include NAMESPACE_BEGIN(CryptoPP) /**
www.eeworm.com/read/470055/6923813

cpp queue.cpp

// queue.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #ifndef CRYPTOPP_IMPORTS #include "queue.h" #include "filters.h" NAMESPACE_BEGIN(CryptoPP) static con