摘要: 一、结构体定义 1.顺序队 typedef struct { int data[maxSize]; int front,rear; }SqQueue; 2.链队 (1)队结点类型 typedef struct QNode { int data; struct QNode *next; }QNode; 阅读全文
posted @ 2022-08-27 22:24 unravel_CAT 阅读(4) 评论(0) 推荐(0)