摘要: #include<stdio.h> #include<stdlib.h> typedef struct Node { char data; struct Node* next; }Node, *List; //分成三段创建链表 Node* CreateList(List L, int length) 阅读全文
posted @ 2021-09-29 13:46 磐正 阅读(20) 评论(0) 推荐(0)