摘要: 首先,定义数诀结构listg.h 1 #ifndef listg_h 2 #define listg_h 3 #include <stdlib.h> 4 #include <stdio.h> 5 6 typedef int DataType; 7 8 typedef struct node_{ 9 阅读全文
posted @ 2020-11-02 21:17 叕叒双又 阅读(291) 评论(0) 推荐(1) 编辑
摘要: 老样子,代码就是一切,首先queueg.h 1 #ifndef queueg_h 2 #define queueg_h 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef int DataType; 8 9 typedef struct 阅读全文
posted @ 2020-11-02 20:17 叕叒双又 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 代码非常简单,直接代码stackg.h 1 #ifndef stackg_h 2 #define stackg_h 3 4 #include <stdio.h> 5 #include <stdlib.h> 6 7 typedef int DataType; 8 9 typedef struct no 阅读全文
posted @ 2020-11-02 20:11 叕叒双又 阅读(164) 评论(0) 推荐(0) 编辑