摘要: #include <stdio.h> #include <stdbool.h> #include <stdlib.h> //exit 函数需要 #include <malloc.h> #define MAXSIZE 8 typedef struct queue { int* arr; //int 类 阅读全文
posted @ 2020-06-03 23:46 abel2020 阅读(160) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <malloc.h> #include <stdbool.h> #include <stdlib.h> typedef struct node //定义节点类型 { int data; struct node* pNext; }*PNODE, 阅读全文
posted @ 2020-06-03 03:35 abel2020 阅读(92) 评论(0) 推荐(0) 编辑
摘要: #include <stdio.h> #include <stdbool.h> #include <stdlib.h> //exit 函数需要 #include <malloc.h> typedef struct node { struct node* pNext; int data; }*PNOD 阅读全文
posted @ 2020-06-03 01:27 abel2020 阅读(104) 评论(0) 推荐(0) 编辑