摘要: # 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 雩娄的木子 阅读(53) 评论(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 雩娄的木子 阅读(82) 评论(0) 推荐(0) 编辑