代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/209806/15214183
cpp queue.cpp
#include "queue.h"
HQueue::HQueue(int sz):rear(0),front(0),m(sz){//tag(0),
//structure function,to create a empty Queue that have the max size of m
Q =new Circle[m];
www.eeworm.com/read/209433/15220175
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/208890/15233151
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/208890/15233201
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/208576/15243636
h queue.h
// Fig. 21.16: Queue.h
// Template Queue class definition derived from class List.
#ifndef QUEUE_H
#define QUEUE_H
#include "List.h" // List class definition
template< typename QUEUETYPE >
c
www.eeworm.com/read/207697/15264508
h queue.h
#include "HEAD.H"
struct Node{
char e;
struct Node* Next;
};
struct Queue {
struct Node* head;
struct Node* buttom;
/*char e;
struct Queue* Next;*/
};
/*Status IsQEmpty(struct Queue
www.eeworm.com/read/206630/15292831
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/206630/15292832
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/206630/15292841