摘要: #include <stdio.h> #include <stdlib.h> //第13节课作业,针对栈,队列循环进行的练习 #define MaxSize 5 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //数组 i 阅读全文
posted @ 2023-04-05 19:09 ha_1007 阅读(41) 评论(0) 推荐(0)
摘要: #include <stdio.h> #include <stdlib.h> //第13节课作业,针对栈,队列循环进行的练习 #define MaxSize 5 typedef int ElemType; typedef struct { ElemType data[MaxSize]; //数组 i 阅读全文
posted @ 2023-04-05 10:37 ha_1007 阅读(34) 评论(0) 推荐(0)