摘要: 1 #include<cstdio> 2 #define MAX_SIZE 101 3 //全局变量 4 int a[MAX_SIZE]; 5 int top = -1; 6 //压栈 7 void Push(int n) { 8 if (top == MAX_SIZE) { 9 printf("e 阅读全文
posted @ 2021-10-06 16:44 越菜越自信 阅读(333) 评论(1) 推荐(0)