静态栈
摘要:
1 #include <stdio.h> 2 #include <stdlib.h> 3 4 #define Length 10 5 6 struct Stack 7 { 8 int element[Length]; 9 int cursor; 10 11 void initial() 12 { 1 阅读全文
posted @ 2022-04-22 14:48 lshuai 阅读(27) 评论(0) 推荐(0)
posted @ 2022-04-22 14:48 lshuai 阅读(27) 评论(0) 推荐(0)