摘要: #include <stdio.h> #include <stdlib.h> #define MAX_SIZE 5 /* 栈最大容量 */ #define Empty 0 /* 空 */ #define Full 1 /* 满 */ #define Avail -1 /* 可用 */ typedef 阅读全文
posted @ 2022-03-16 21:54 zhichutian 阅读(37) 评论(0) 推荐(0)