摘要: 学习笔记 `# 1996 # //编写程序建立的单链表 #include<stdio.h> #include<stdlib.h> typedef struct Node { int data; struct Node *next; } Node; Node *createlist(void);//创建 voi 阅读全文
posted @ 2021-12-14 18:31 Gavin* 阅读(47) 评论(0) 推荐(0)