摘要:
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 阅读全文
摘要:
1 #include <iostream> 2 #include <stdlib.h> 3 /*栈最大长度宏*/ 4 #define STACK_MAX_SIZE 100 5 using namespace std; 6 /*元素类型*/ 7 typedef int ElemType; 8 /*顺序 阅读全文