代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/126507/14418423

cpp queue.cpp

template Queue::~Queue() { while ( ! is_empty() ) remove(); } template void Queue::add( const Type &val ) { // allocate
www.eeworm.com/read/126507/14418428

h queue.h

#ifndef QUEUE_H #define QUEUE_H #include using std::cerr; using std::ostream; #include using std::exit; // declaration of QueueItem template class QueueIte
www.eeworm.com/read/227409/14427210

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/227409/14427374

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/126308/14433682

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/227241/14435924

h queue.h

/* * Doubly linked list primitives * Copyright * (C) 1992 Joseph H. Allen * * This file is part of JOE (Joe's Own Editor) */ #ifndef _JOE_QUEUE #define _JOE_QUEUE 1 extern void *ITEM; extern
www.eeworm.com/read/227241/14436084

c queue.c

/* * Doubly linked list primitives * Copyright * (C) 1992 Joseph H. Allen * * This file is part of JOE (Joe's Own Editor) */ #include "types.h" void *QUEUE; void *ITEM; void *LAST; void *ali
www.eeworm.com/read/226652/14456183

h queue.h

/****************************************Copyright (c)************************************************** ** 广州周立功单片机发展有限公司 ** 研 究
www.eeworm.com/read/226652/14456185

c queue.c

/****************************************Copyright (c)************************************************** ** 广州周立功单片机发展有限公司 ** 研 究
www.eeworm.com/read/226200/14489590

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) /**