代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/363449/9951064

h queue.h

/*------------------------------------------------------------------------*/ /* */ /* QUEUE.H
www.eeworm.com/read/167649/9957152

h queue.h

//顺序循环队列的模板类接口定义以及基本运算的实现代码 #include enum Error_code{ success, overflow, underflow }; const int_maxqueue = 10; // small value for testing class Queue { public: Queue( ); boo
www.eeworm.com/read/167649/9957440

h queue.h

//顺序循环队列的模板类接口定义以及基本运算的实现代码 #include enum Error_code{ success, overflow, underflow, can_land, can_depart, fail }; const int maxqueue = 10; // small value for testing template
www.eeworm.com/read/167585/9959786

c queue.c

/* * Boa, an http server * Copyright (C) 1995 Paul Phillips * Some changes Copyright (C) 1997 Jon Nelson * * This program is free software; you can r
www.eeworm.com/read/362791/9980548

h queue.h

// specification file for an unlimited queue for storing bytes #ifndef CRYPTOPP_QUEUE_H #define CRYPTOPP_QUEUE_H #include "cryptlib.h" NAMESPACE_BEGIN(CryptoPP) // The queue is implemente
www.eeworm.com/read/362791/9980638

cpp queue.cpp

// queue.cpp - written and placed in the public domain by Wei Dai #include "pch.h" #include "queue.h" #include "misc.h" NAMESPACE_BEGIN(CryptoPP) // this class for use by ByteQueue only cl
www.eeworm.com/read/167035/9984043

h queue.h

/* 队列 * */ #ifndef QUEUE_CLASS #define QUEUE_CLASS #include "dclinkedlist.h" template class Queue { private: // 私有数据成员,队列数组 DCLinkedList queuelist; public: // 构造函数
www.eeworm.com/read/362558/9992885

rar queue.rar

www.eeworm.com/read/362558/9992950

exe queue.exe

www.eeworm.com/read/166025/10040856

c queue.c

#include #include struct queue { int rear,front; int item[10]; }; void insert(struct queue *v) { int i,x; if(v->rear>=5) { printf("queue full\n"); for(i=0;i