会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
月间
个人学习记录,大部分是摘抄式的学习本
博客园
首页
博问
闪存
新随笔
订阅
管理
2020年2月22日
c语言-链表-头插法代码例子
摘要: 1 #include <stdio.h> 2 #include <stdlib.h> 3 4 struct Book 5 { 6 char title [128]; 7 char author [40]; 8 struct Book *next; 9 }; 10 11 void getInput(s
阅读全文
posted @ 2020-02-22 17:18 月间
阅读(936)
评论(0)
推荐(0)
编辑