├── LMS.c ├── LMS.exe ├── README.md ├── library.txt ├── user.txt ├── 函数调用关系图zjb.jpg └── 需求分析树状图.jpg /LMS.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warmilk/LibraryManagementSystem/c9dc1edc832c5c6e7d3638dc19ffe6cb15224fbe/LMS.c -------------------------------------------------------------------------------- /LMS.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warmilk/LibraryManagementSystem/c9dc1edc832c5c6e7d3638dc19ffe6cb15224fbe/LMS.exe -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # LibraryManagementSystem 2 | 《Data Structures and Algorithms》programing task in C language.《数据结构与算法》课程设计C语言版 3 | 4 | ##On development 5 | 6 | :octocat: The first version: Is fork from [this](https://github.com/Kelvin65535/LibrarySystem) I use CVS Magic to make it to more kind of feature 7 | 8 | :octocat: Compiler: GCC 9 | 10 | :octocat: Development tool: DevC++ 11 | 12 | 13 | ##The following blog post helped me 14 | 15 | :octocat: [维基百科·中文-指针](https://zh.wikipedia.org/wiki/%E6%8C%87%E6%A8%99_(%E9%9B%BB%E8%85%A6%E7%A7%91%E5%AD%B8)) 16 | 17 | :octocat: [p=head->next与head->next=p的区别](http://blog.csdn.net/skychaofan/article/details/46815007) 18 | 19 | :octocat: [单链表返回头指针为什么需要定义多一个p指针?](https://segmentfault.com/q/1010000007379941) 20 | 21 | ##TODO:boom::smile: 22 | 23 | :octocat: 1.读者查阅个人借还记录 24 | 25 | :octocat: 2.书籍库存 26 | 27 | :octocat: 3.定义多一个借还书相关信息的结构体然后将其嵌套进book结构体? 28 | 29 | :octocat: 4.create_user()写多条function调用,用于检测必须输入的为刚好11位的纯数字usernum 30 | 31 | :octocat: 5.在sysuser结构体增加id字段,用于登录时自动判断用户角色 32 | 33 | ##Declaration 34 | 35 | :octocat: 完成度已经灰常高鸟~源代码的注释我写得详细到啰嗦的地步了。。。。 36 | 37 | :octocat: 感觉C完全就是更友好的汇编。。一个个黑盒function整整齐齐地放在流水线上。。 38 | 39 | :octocat: TODO的功能老夫有空再补上!!! 40 | 41 | 2016年11月4日 秋风起 夜迷离 42 | 43 | =。= 晚安 44 | -------------------------------------------------------------------------------- /library.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warmilk/LibraryManagementSystem/c9dc1edc832c5c6e7d3638dc19ffe6cb15224fbe/library.txt -------------------------------------------------------------------------------- /user.txt: -------------------------------------------------------------------------------- 1 | 1 1 2 | 14209030092 123 3 | 14209030093 123 4 | 14209030094 123 5 | 14209030095 123 6 | 14209030096 123 7 | 14209030097 123 8 | 14209030098 123 9 | 14209030099 123 10 | 14209030100 123 11 | 14209030101 123 12 | 14209030102 123 13 | 14209030103 123 14 | 14209030104 123 15 | 14209030105 123 16 | 14209030106 123 17 | 14209030107 123 18 | 14209030108 123 19 | 14209030109 123 20 | 14209030110 123 21 | 14209030111 123 22 | 14209030112 123 23 | 14209030113 123 24 | 14209030114 123 25 | 14209030031 123 26 | 14209030078 123 27 | -------------------------------------------------------------------------------- /函数调用关系图zjb.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warmilk/LibraryManagementSystem/c9dc1edc832c5c6e7d3638dc19ffe6cb15224fbe/函数调用关系图zjb.jpg -------------------------------------------------------------------------------- /需求分析树状图.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/warmilk/LibraryManagementSystem/c9dc1edc832c5c6e7d3638dc19ffe6cb15224fbe/需求分析树状图.jpg --------------------------------------------------------------------------------