03 2020 档案

摘要://顺序栈 #include<iostream>using namespace std; #define MAXSIZE 100#define OK 1#define ERROR 0#define Status int#define SElmType int#define OVERFLOW -2// 阅读全文
posted @ 2020-03-30 23:24 buhuishuoyingyu 阅读(640) 评论(0) 推荐(0)
摘要://顺序栈#include<iostream>#include<string>using namespace std; #define MAXSIZE 100 //栈的最大容量struct SqStack{ int *base;//栈底指针 int *top;//栈顶指针 char sign[MAX 阅读全文
posted @ 2020-03-29 13:06 buhuishuoyingyu 阅读(373) 评论(0) 推荐(0)