摘要:
首先,定义数诀结构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 阅读全文
摘要:
老样子,代码就是一切,首先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 阅读全文
摘要:
代码非常简单,直接代码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 阅读全文