摘要: #include<stdio.h> #include <stdlib.h> #include<stdbool.h> typedef int E; typedef struct node { E data; struct node* next; } Node; typedef struct { Nod 阅读全文
posted @ 2024-05-03 20:42 Uiney 阅读(2) 评论(0) 推荐(0) 编辑