摘要: 1 #include <stdio.h> 2 #include <stdbool.h> 3 #include <stdlib.h> 4 5 #define MAXSIZE 10000 6 typedef struct{ 7 char data[MAXSIZE]; 8 int top; 9 10 }S 阅读全文
posted @ 2020-10-11 14:09 ethon-wang 阅读(416) 评论(0) 推荐(0) 编辑
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 typedef int DataType; 4 struct seqStack 5 {//有3个数据成员 6 int MAXNUM;//用于记录顺序栈中能存放的最大元素个数的 整型 MAXNUM 7 int t 阅读全文
posted @ 2020-10-11 12:53 ethon-wang 阅读(250) 评论(0) 推荐(0) 编辑