摘要:
第一关 #include <stdio.h> #include <stdlib.h> #include "SeqQueue.h" SeqQueue* SQ_Create(int maxlen) // 创建顺序队列, 队列最多存储maxlen个队列元素。 { SeqQueue* sq=(SeqQueu 阅读全文
posted @ 2023-10-09 09:13
什么时候才能不困
阅读(58)
评论(0)
推荐(0)
摘要:
第一关 #include <stdio.h> #include <stdlib.h> #include "SeqStack.h" /*创建一个栈*/ SeqStack* SS_Create(int maxlen) { SeqStack* ss=(SeqStack*)malloc(sizeof(Seq 阅读全文
posted @ 2023-10-09 09:11
什么时候才能不困
阅读(23)
评论(0)
推荐(0)