欢迎来到天天文库
浏览记录
ID:6810404
大小:44.00 KB
页数:17页
时间:2018-01-26
《数据结构课程设计-图书管理系统》由会员上传分享,免费在线阅读,更多相关内容在工程资料-天天文库。
1、/*这是本人大二做数据结构课程设计的一个题目已编译通过用户首先以管理员身份登陆初始密码然后再添加图书和其他用户程序中还有许多问题,有好的意见可以提出来谢了*/#include#include#include#include#include#include#include#includeusingnamespacestd;/*书类定义*/classBnode{private:stringB_name;//书名stringB_a
2、uthor;//作者stringB_no;//编号stringB_pub;//出版社intB_sum;//馆藏量booltoke;//是否可借标记stringbow_time;//借书时间stringret_time;//还书时间Bnode*next;public:Bnode(){next=NULL;}~Bnode(){}friendclassAdministrate;friendclassUnode;};/*用户类定义*/classUnode{private:stringU_name,U_password;Bnode*borrow,*history,current;
3、Unode*next;public:Unode(stringpassword=""){borrow=newBnode;history=newBnode;next=NULL;U_password=password;}~Unode(){}Unode*enter(Unode*h);voidsearch_Book(Bnode*h);voidguanli(Bnode*h1,Unode*h2);voidbowrrow_Book(Bnode*h1,Unode*h2);voidreturn_Book(Bnode*h1,Unode*h2);voidshow_current(Unode*
4、h);voidshow_history(Unode*h);voidsetcode(Unode*h);friendclassAdministrate;};/*管理员定义*/classAdministrate{private:stringA_password;public:Administrate(stringpassword=""){A_password=password;}~Administrate(){}voidenter();voidadd_Unode(Unode*h);voidadd_Bnode(Bnode*h);voidshow_Unode(Unode*h);
5、voidshow_Bnode(Bnode*h);voiddelete_Unode(Unode*h);voiddelete_Bnode(Bnode*h);voidsetcode();};voidmain(){intcode,code1,code2;AdministrateA;Unode*user,U,*u;Bnode*book,B,*b;user=newUnode;book=newBnode;cout<<"*********************************************************"<6、endl;cout<<"**"<>code;switch(code){case1:{A.enter();system("cls");system("d7、ate/t");system("time/t");do{cout<<"*********************"<>code1;switch(code1){ca
6、endl;cout<<"**"<>code;switch(code){case1:{A.enter();system("cls");system("d
7、ate/t");system("time/t");do{cout<<"*********************"<>code1;switch(code1){ca
此文档下载收益归作者所有