2013年10月9日
摘要: #include #include #define M 10typedef struct //定义一个顺序栈{ int data[M]; int top;}SqStack;void InitStack(SqStack &st)//创建一个栈{ st.top=-1;}int Pu... 阅读全文
posted @ 2013-10-09 09:36 lie隼 阅读(374) 评论(0) 推荐(0) 编辑