摘要: 1 #include <iostream> 2 #include <stdlib.h> 3 #define MAX_SIZE 4 4 using namespace std; 5 typedef int ElemType; 6 typedef struct sequeue{ 7 ElemType d 阅读全文
posted @ 2020-05-01 11:57 wkfxm 阅读(463) 评论(0) 推荐(0) 编辑
摘要: 1 #include <iostream> 2 #include <stdlib.h> 3 /*栈最大长度宏*/ 4 #define STACK_MAX_SIZE 100 5 using namespace std; 6 /*元素类型*/ 7 typedef int ElemType; 8 /*顺序 阅读全文
posted @ 2020-05-01 10:52 wkfxm 阅读(298) 评论(0) 推荐(0) 编辑