摘要: 1 #include 2 #include 3 4 #define M 100 5 typedef int ElemType; 6 typedef struct 7 { 8 ElemType data[M]; 9 int top; 10 }Stack; 11 12 //初始化栈 13 void InitStack(Stack *s) 14 { 15 ... 阅读全文
posted @ 2019-04-22 11:43 拒绝吃土 阅读(97) 评论(0) 推荐(0) 编辑