摘要:
1 #include 2 using namespace std; 3 4 typedef int Status; 5 typedef int ElemType; 6 #define OK 1 7 #define ERROR 0 8 9 10 //链栈的存储结构 11 typedef struct StackNode 12 { 13 ElemType data; ... 阅读全文
posted @ 2018-05-22 17:22
Piccolo_Devil
阅读(362)
评论(0)
推荐(0)
摘要:
1 #include 2 using namespace std; 3 4 typedef int SElemType; 5 typedef int Status; 6 #define OK 1 7 #define ERROR 0 8 9 10 #define MAXSIZE 100 //栈的最大空间 11 12 13 //顺序栈的存储结构 14 typ... 阅读全文
posted @ 2018-05-22 16:56
Piccolo_Devil
阅读(305)
评论(0)
推荐(0)

浙公网安备 33010602011771号