C语言图书管理系统设计代码.docVIP

  • 12
  • 0
  • 约2.49万字
  • 约 27页
  • 2018-11-30 发布于安徽
  • 举报
. ..... #includestdio.h #includestdlib.h #includestring.h struct book{ int num; char bname[50]; char wname[20]; char press[50]; char sort[50]; int time; float price; struct book *next; }; struct book *creatbook(); //创建链表 struct book *addbook(struct book *head); //添加图书 int yanzheng(struct book *head,int m); //验证新添加的图书编码是否已存在 void deletebook(struct book *head); //删除图书 void fprint(struct book *head); //将链表写入文件 struct book *load(); //从文件中读取信息并建成链表 void print_book(struct book *

文档评论(0)

1亿VIP精品文档

相关文档