摘要: 1 #include 2 #define STACKSIZE 50/*设栈中元素个数为50个*/ 3 using namespace std; 4 5 struct SeqStack 6 { 7 int elem[STACKSIZE]; 8 int top; ... 阅读全文
posted @ 2015-03-30 19:18 薛晓东 阅读(518) 评论(0) 推荐(0)