04 2021 档案
摘要:###链式队列的基本操作(入队和出队) ?#include <stdio.h> ?#include <stdlib.h> ?#include <malloc.h> //链式队列 typedef struct LNode{ int data; struct LNode *next; }LNode, *
阅读全文
摘要:###单链表的基本操作 /#include <stdio.h> /#include <stdlib.h> /#include <malloc.h> typedef struct LNode{ int data; struct LNode *next; }LNode, *LinkList; //初始化
阅读全文
摘要:线性表的基本操作 (C语言) /#include <stdio.h> /#include <stdlib.h> /#define Initsize 5 //typedef 重命名struct为 SqList typedef struct{ int *data; //指示动态分配数组的指针 int M
阅读全文

浙公网安备 33010602011771号