代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/239763/13257970
class queue.class
www.eeworm.com/read/239763/13257972
java queue.java
// Queue.java
// demonstrates queue
// to run this program: C>java QueueApp
////////////////////////////////////////////////////////////////
class Queue
{
private int maxSize;
private
www.eeworm.com/read/324562/13258021
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/239763/13258222
class queue.class
www.eeworm.com/read/239652/13263687
cpp queue.cpp
#include "iostream.h"
#include "string.h"
#include "conio.h"
#define SIZE 20
#define Err 0
#define Ok 1
#define cEnd "bye"
#define Pend ((X *)pchar)
#define Phead (this)
typedef uns
www.eeworm.com/read/239624/13265432
obj queue.obj
www.eeworm.com/read/239624/13265434
cpp queue.cpp
//THE PROGRAM IS TO TEST THE CLASS "QUEUE"
//FILE QUEUE.CPP
#include "QUEUE.h"
class QUEUE : LIST
{
public:
QUEUE():LIST(){}
void PUT(int NUM)
{
LIST::BACKWARD_ADD(NUM);
www.eeworm.com/read/239624/13265437
exe queue.exe
www.eeworm.com/read/239624/13265440
h queue.h
//THE FILE INCLUDES THE CLASS "NODE" "LIST"
//FILE QUEUE.H
#include
#include
#include
class NODE
{
friend class LIST;
private:
NODE *NEXT;
www.eeworm.com/read/239624/13265442