摘要: ###一.代码 #include<stdio.h> #include<stdlib.h> #define false 0 #define true 1 typedef struct node{ int data; struct node* next; }linkList; linkList* ini 阅读全文
posted @ 2023-03-12 20:54 彭乐祥 阅读(10) 评论(0) 推荐(0) 编辑