代码搜索:queue
找到约 10,000 项符合「queue」的源代码
代码结果 10,000
www.eeworm.com/read/317554/13502419
h queue.h
typedef struct QNode
{
QElemType data;
struct QNode *next;
}QNode,*QueuePtr;
typedef struct
{
QueuePtr front,rear;
}LinkQueue;
www.eeworm.com/read/316980/13513257
h queue.h
typedef struct{
int ArrivalTime;
int Duration;
int CustomerNum;
float Cost0;
float Cost1;
}QElemType;
typedef struct QNode{ //结点类型
QElemType data;
struct QNode *next;
}QNod
www.eeworm.com/read/316845/13516088
h queue.h
/**********************************************
* Dawn Light Player
*
* queue.h
*
* Created by kf701
* Mon Feb 25 17:05:41 CST 2008
*
* $Id: queue.h 168 2008-03-21 02:50:01Z kf701 $
********
www.eeworm.com/read/316845/13516098
c queue.c
/**********************************************
* Dawn Light Player
*
* queue.c
*
* Created by kf701
* Mon Feb 25 17:05:41 CST 2008
*
* $Id: queue.c 174 2008-03-22 06:30:04Z kf701 $
********
www.eeworm.com/read/316786/13517854
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/316753/13518027
h queue.h
#ifndef _QUEUE_H_
#define _QUEUE_H_
#include "config.h"
#ifndef NULL
#define NULL (void *)0
#endif
#define Queue_EnterCritical()
#define Queue_ExitCritical()
typedef unsigned char
www.eeworm.com/read/316753/13518028
c queue.c
#include "Queue.h"
QUEUE_RET QueueInit(QUEUE *queue, QUEUE_TYPE *buf, unsigned int length)
{
if(NULL != queue && NULL != buf && 0 != length)
{
Queue_EnterCritical();
queue->buf = buf;
www.eeworm.com/read/316700/13518555
h queue.h
#include
using namespace std;
#define OK 0;
#define ERROR 1;
typedef int Status;
typedef int QElemType;
typedef struct QNode{
QElemType data;
struct QNode *next;
}QNode,*Queu
www.eeworm.com/read/316695/13518573
h queue.h
#include
using namespace std;
#define OK 0;
#define ERROR 1;
typedef int Status;
typedef int QElemType;
typedef struct QNode{
QElemType data;
struct QNode *next;
}QNode,*Queu
www.eeworm.com/read/315811/13535887