代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/446269/7581767
c queue.c
//======================================================
// 文件名称: Queue.c
// 功能描述: 循环队列存储结构,用于保存串口发来的信息
// 维护记录: 2007-8-10 v1.0
//======================================================
#include
www.eeworm.com/read/446269/7581771
h queue.h
// SUNPLUS S+core IDE generated include file.
#ifndef GPRS_QUEUE_H_26500_6334__INCLUDED_
#define GPRS_QUEUE_H_26500_6334__INCLUDED_
int Queue_Enter(char *str);
int Queue_Delete(char *str);
int Queue
www.eeworm.com/read/446236/7583341
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/446236/7583391
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/446236/7583481
obj queue.obj
www.eeworm.com/read/445698/7591844
h queue.h
template
class Queue
{
public:
Queue(){};
~Queue(){};
virtual bool IsEmpty() const=0;
virtual bool IsFull() const=0;
virtual bool Front(T& x) const=0;
vir
www.eeworm.com/read/444799/7606486
h queue.h
/*
** Interface for a queue module
*/
#include
#define QUEUE_TYPE int /* Type of value in the queue */
/*
** create_queue
** Creates a queue. The argument indicates the maximu
www.eeworm.com/read/444799/7606487
c a_queue.c
/*
** A queue implemented with a static array. The array size can
** be adjusted only by changing the #define and recompiling
** the module.
*/
#include "queue.h"
#include
#include
www.eeworm.com/read/444091/7618056
h queue.h
/*
** Interface for a queue module
*/
#include
#define QUEUE_TYPE int /* Type of value in the queue */
/*
** create_queue
** Creates a queue. The argument indicates the maximu
www.eeworm.com/read/444091/7618059
c a_queue.c
/*
** A queue implemented with a static array. The array size can
** be adjusted only by changing the #define and recompiling
** the module.
*/
#include "queue.h"
#include
#include