队列的链式存储实现

队列的链式存储实现_第1张图片

 

#define ElementType int
#define MAXSIZE      100

struct Node
{
	ElementType Data;
	struct Node* next;
};
/// 
/// 定义了两个指针的结构体
/// 
struct  Qnode
{
	struct  Node* rear;
	struct  Node* front;
};
typedef struct QNode* Queue;
Queue PtrQ;

你可能感兴趣的:(数据结构,算法)