02 2020 档案

摘要: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 漂渡 阅读(379) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> #include <stdlib.h> #include <string.h> //#define LEN sizeof(LinkedList); typedef struct Student{ int score; char name[10]; struct 阅读全文
posted @ 2020-02-15 14:26 漂渡 阅读(778) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示