首页 > TAG信息列表 > lqu

队列

一、结构体定义 1.顺序队 typedef struct { int data[maxSize]; int front,rear; }SqQueue; 2.链队 (1)队结点类型 typedef struct QNode { int data; struct QNode *next; }QNode; (2)链队定义 typedef struct { QNode *front,*rear; }LiQueue; 二、顺序队操作(循环队列) 1.队