摘要: # include <stdio.h> # include <malloc.h> # include <stdbool.h> typedef struct Node{ int data; struct Node * next; } Node,* PNODE; typedef struct Stack 阅读全文
posted @ 2021-09-30 18:03 写的代码很烂 阅读(43) 评论(0) 推荐(0) 编辑
摘要: # include <stdio.h> # include <malloc.h> typedef struct Node{ int data; struct Node * next; } Node ,* PNODE; PNODE create_list(); void show_list(PNODE 阅读全文
posted @ 2021-09-30 01:12 写的代码很烂 阅读(80) 评论(0) 推荐(0) 编辑