代码搜索:queue

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

代码结果 10,000
www.eeworm.com/read/120988/14777340

inc queue.inc

;---------------------------------------------------------- ; 作者:陈文尧 ; 文件:Queue.inc ; 版本:1.04 ; 创建日期:2001.08.01 ;---------------------------------------------------------- FQUEUE struc qu
www.eeworm.com/read/220938/14781700

h queue.h

#include using namespace std; template class Queue { public: Queue(int MaxQueueSize=10); ~Queue(){delete [] queue;} bool IsEmpty() {return front==rear;} bool IsFull(
www.eeworm.com/read/220892/14785145

java queue.java

public interface Queue{ public void append(Object obj) throws Exception; public Object delete() throws Exception; public Object getFront() throws Exception; public boolean notEmpty(); }
www.eeworm.com/read/220549/14796828

h queue.h

www.eeworm.com/read/120385/14804231

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/120385/14804239

cpp queue.cpp

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

h queue.h

//------------------------------------------------------------ // 队列相关函数 // 创建于2002年4月3日 //------------------------------------------------------------ #ifndef _QUEUE_H_ #define _QUEUE_H_
www.eeworm.com/read/120264/14808410

cpp queue.cpp

//------------------------------------------------------------ // 队列相关函数 // 创建于2002年4月3日 //------------------------------------------------------------ #include "Queue.h" #include "gamelib\
www.eeworm.com/read/119273/14835105

h queue.h

/*------------------------------------------------------------------------*/ /* */ /* QUEUE.H
www.eeworm.com/read/119269/14835216

png queue.png