摘要: 单向链表的增删改查(C语言版) #include <stdio.h> #include <stdlib.h> struct Stu *create(int n); void print(struct Stu *head); void deleteNode(struct Stu *head,int n 阅读全文
posted @ 2020-07-27 23:45 工匠大师 阅读(459) 评论(0) 推荐(0) 编辑