摘要: 1.数组实现的栈 #include <stdio.h> #include <string.h> #include <stdlib.h> #define MAXSIZE 5 /** *数组实现的栈,缺点,容量固定 **/ typedef struct{ int data[MAXSIZE]; int i 阅读全文
posted @ 2020-02-16 14:10 漂渡 阅读(376) 评论(0) 推荐(0) 编辑