最新文章
  • 队列的链式存储结构

    队列的链式存储结构 typedef struct QNode {     QElemType data;     struct QNode *next; }QNode,*QueuePtr;     typedef struct {     QueuePtr front;  ……

    maple 2022-11-01
    435 0 0
  • 队列的顺序存储结构

    队列的顺序存储结构 #define MAXSIZE 100 typedef struct {     QELemType *base;     int front;     int rear; }SqQueue;     循环队列的初始……

    maple 2022-11-01
    379 0 0