aoe1231

看得完吗

上一页 1 ··· 10 11 12 13 14

2022年9月18日 #

数据结构(C语言)之——链队列

摘要: #include#include#includetypedef char ElemType; //定义元素类型typedef struct LinkNode { //链队列结点 ElemType elem; struct LinkNode *next; }Li... 阅读全文

posted @ 2022-09-18 15:47 啊噢1231 阅读(27) 评论(0) 推荐(0) 编辑

数据结构(C语言)之——循环队列

摘要: #include#include#includetypedef char ElemType; //定义元素类型typedef struct SqQueue { ElemType* elems; //元素数组 int front, rear; //定义队首和队尾... 阅读全文

posted @ 2022-09-18 15:47 啊噢1231 阅读(45) 评论(0) 推荐(0) 编辑

数据结构(C语言)之——链栈

摘要: #include#include#includetypedef char ElemType; //定义元素类型typedef struct LinkNode{ ElemType elem; //数据域 struct LinkNode *next; //指针域}... 阅读全文

posted @ 2022-09-18 15:47 啊噢1231 阅读(38) 评论(0) 推荐(0) 编辑

上一页 1 ··· 10 11 12 13 14

导航

回到顶部