代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/310869/13642044
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/310869/13642046
cpp queue.cpp
// queue.cpp -- Queue and Customer methods
#include "queue.h"
#include
#include // (or stdlib.h) for rand()
using namespace std;
// Queue methods
Queue::Queue(int
www.eeworm.com/read/310520/13649847
c queue.c
#include
#define Max 100
void SetNull(front, rear)
int *front, *rear;
{
*front = 0;
*rear = 0;
}
int Empty(front,rear)
int *front, *rear;
{
if(*front == *rear)
return(1)
www.eeworm.com/read/309876/13663418
h queue.h
///////////////////////////
// //
// 队列数据结构 Queue.h //
// //
//////////////////////////
#include
template class Queue;
template class Qu
www.eeworm.com/read/309649/13667052
c queue.c
/* +++Date last modified: 05-Jul-1997 */
/*
+----------------------------------------------------+
| Thunderbird Software |
+---------------------------------------
www.eeworm.com/read/309649/13667387
h queue.h
/* +++Date last modified: 05-Jul-1997 */
/*
+----------------------------------------------------+
| Thunderbird Software |
+---------------------------------------
www.eeworm.com/read/309443/13671401
html queue.html
MFC Programmer's SourceBook : STL Programmer's Gui
www.eeworm.com/read/308995/13684625
h queue.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/308995/13684659
h queue.h
/*
* This file contains code from "C++ Primer, Fourth Edition", by Stanley B.
* Lippman, Jose Lajoie, and Barbara E. Moo, and is covered under the
* copyright and warranty notices given in that
www.eeworm.com/read/307938/13712861
pbi queue.pbi
This is an internal working file generated by the Source Browser.
18:36 54s
E:\2007sam7xproject\freertosv450\FreeRTOSV4.5.0\FreeRTOS\Source\queue.c
E:\2007sam7xproject\freertosv450\FreeRTOSV4.5.0\F