- 博客(5)
- 收藏
- 关注
原创 定长顺序串基本操作实现
定长顺序串基本操作实现 // // Created by Changepeng on 2019/6/18. // #include<stdio.h> #include<stdlib.h> #define maxsize 100 typedef int states; typedef char datatype; #define ERROR 0 #define FALSE...
2019-06-19 14:55:03
1978
原创 队列的链式存储(纯代码)
队列的链式存储(纯代码) // // Created by Changepeng on 2019/6/18. // #include<stdio.h> #include<stdlib.h> #define stackSize 100 typedef int states; typedef int datatype; #define ERROR 0 #define FALS...
2019-06-18 20:23:55
285
原创 队列的顺序存储(纯代码)
队列的顺序存储(纯代码) // // Created by Changepeng on 2019/6/18. // #include<stdio.h> #include<stdlib.h> #define maxsize 100 typedef int states; typedef int datatype; #define ERROR 0 #define FALSE...
2019-06-18 11:09:49
275
原创 数据结构线性表的链式存储(纯代码)
数据结构线性表的链式存储(纯代码) #include<stdio.h> #include<stdlib.h> #define ERROR 0 #define OK 1 #define TRUE 1 #define FALSE 0 typedef int datatype;//数据类型 typedef int status;//状态码 typedef struct Node...
2019-06-16 19:12:16
462
原创 数据结构线性表的顺序存储(纯代码)
数据结构线性表的顺序存储(纯代码) #include<stdio.h> #include<stdlib.h> #define maxsize 100 typedef int datatype; //存储结构 typedef struct{ datatype data[maxsize]; int n; }Seqlist; //创建线性表 void ...
2019-06-15 16:45:05
502
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅