摘要: 1. 2. 3. 1 //逆波兰表达式 2 #include <stdio.h> 3 #include <stdlib.h> 4 #include <ctype.h> 5 6 #define STACK_INIT_SIZE 20 //存储栈的长度,栈大小 7 #define STACKINCREME 阅读全文
posted @ 2020-08-23 23:14 wind_y 阅读(202) 评论(0) 推荐(0) 编辑
摘要: /* 1.会对它进行修改的就以指针的形式传进来,eg:void Push(sqStack *s,ElemType *e) 、void Pop(sqStack *s,ElemType *e) 2.不会修改的只需要传数据就可以了, eg:int StackLen(sqStack s) 3.指针用箭头:s 阅读全文
posted @ 2020-08-23 19:46 wind_y 阅读(230) 评论(0) 推荐(0) 编辑