04 2021 档案

摘要:###链式队列的基本操作(入队和出队) ?#include <stdio.h> ?#include <stdlib.h> ?#include <malloc.h> //链式队列 typedef struct LNode{ int data; struct LNode *next; }LNode, * 阅读全文
posted @ 2021-04-29 17:00 哇塞6 阅读(132) 评论(0) 推荐(0)
摘要:###单链表的基本操作 /#include <stdio.h> /#include <stdlib.h> /#include <malloc.h> typedef struct LNode{ int data; struct LNode *next; }LNode, *LinkList; //初始化 阅读全文
posted @ 2021-04-21 23:39 哇塞6 阅读(328) 评论(0) 推荐(0)
摘要:线性表的基本操作 (C语言) /#include <stdio.h> /#include <stdlib.h> /#define Initsize 5 //typedef 重命名struct为 SqList typedef struct{ int *data; //指示动态分配数组的指针 int M 阅读全文
posted @ 2021-04-19 15:04 哇塞6 阅读(340) 评论(0) 推荐(0)