- 博客(2)
- 收藏
- 关注
原创 [数据结构]3.顺序栈
[数据结构]3.顺序栈 #include <iostream> #include <stdio.h> #include <stdlib.h> #define MaxSize 10 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //存放栈中的数据元素 int top;...
2019-12-17 21:12:22 132 1
原创 [数据结构]1.线性表的顺序存储结构——顺序表
[数据结构]1.顺序表 1.定义数组a[]大小MaxSize,创建数据结构SqList #include <iostream> #include <stdio.h> /* 定义数组大小最大长度 MaxSize */ #define MaxSize 50 typedef int ElemType; /* 创建数据结构 */ typedef struct { Ele...
2019-12-11 17:11:10 787
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人