摘要: 顺序队列的操作 #include <stdio.h> #include <stdlib.h> #include <stdbool.h> typedef int ElemType; /*链式队列的节点*/ typedef struct LinkNode{ /*数据域*/ ElemType data; 阅读全文
posted @ 2024-07-13 12:37 成强 阅读(1) 评论(0) 推荐(0) 编辑