代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/218595/14914149
o queue.o
www.eeworm.com/read/218595/14914240
h queue.h
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/218595/14914243
c queue.c
/****************************************Copyright (c)**************************************************
** 广州周立功单片机发展有限公司
** 研 究
www.eeworm.com/read/117422/14923136
class queue.class
www.eeworm.com/read/217667/14955091
class queue.class
www.eeworm.com/read/116690/14959045
h queue.h
const int QueueMaxSize=80;
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front;
QueuePtr rear;
}LinkQueue;
Status
www.eeworm.com/read/116690/14959048
cpp queue.cpp
#include
using namespace std;
Status InitQueue(LinkQueue & Q)
{
Q.front=Q.rear=(QueuePtr)malloc(sizeof(QNode));
if(!Q.front)
exit(OVERFLOW);
Q.front->next=NULL;
return OK;
www.eeworm.com/read/116603/14963160
java queue.java
//: c09:Queue.java
// From 'Thinking in Java, 2nd ed.' by Bruce Eckel
// www.BruceEckel.com. See copyright notice in CopyRight.txt.
// Making a queue from a LinkedList.
import java.util.*;
publ
www.eeworm.com/read/217335/14968814
c queue.c
/*********************************************************
** queue.cpp:the queue manage functions **
**
** zhoushijie **
**
** 2000/3 **
**************************************
www.eeworm.com/read/217335/14968819
h queue.h
/****************************************************
** queue.h:The header file for the queue source file
**
** zhoushijie
**
** 2000/3
******************************************************/