欢迎来到天天文库
浏览记录
ID:47061614
大小:104.01 KB
页数:18页
时间:2019-07-11
《c++图书管理系统源代码》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、//本文章来源于网络。//图书管理系统.cpp:定义控制台应用程序的入口点。////#include"stdafx.h"#include"iostream"#include"fstream"#include"string.h"#include"iomanip"usingnamespacestd;/*int_tmain(intargc,_TCHAR*argv[]){return0;}*//*intmark0=0;//用于标记是否找到要找的信息intmark1=0;//用于标记是否找到要找的信息*/structReathur{//记录书籍的书名信息charbo
2、okname[20];//书名structReathur*Lnode;//指向下一图书节点};structReader{//记录读者信息charReadername[20];//读者名称structReathur*next;//指向该读者借的书structReader*Lreader,*Right,*Lift;//下一个读者节点};structLibray{//记录图书的详细信息charbookname[20];//书名charbookno[20];//编号charbookreathur[20];//作者名intbooknum;//现有册数structLi
3、bray*Llink,*Rlink,*Lnext;//下一图书的左右节点structReader*read;//指向借阅该书的读者};voidbsinsert(structLibray*s,structLibray*&t)//{将s所指结点插入到根结点指针为t的树中}{if(t==NULL)t=s;elseif(strcmp(s->bookname,t->bookname)==1){bsinsert(s,t->Rlink);}else{bsinsert(s,t->Llink);}}voidRnorder(structReader*T){//中序遍历所有的读
4、者链的所有节点if(T!=NULL){Rnorder(T->Lift);structReathur*u;u=T->next;cout<Readername<<"";while(u!=NULL){cout<bookname<<"》"<<"";u=u->Lnode;}Rnorder(T->Right);}}/////////////////////////////////////////////////////////////////////////按中序
5、遍历遍历二叉排序树进行检索///////////voidRnorder_name(structReader*T,charname[],int&vetex){//中序遍历读者链的所有节点inti=vetex;if(T!=NULL){Rnorder_name(T->Lift,name,i);if(strcmp(T->Readername,name)==0){structReathur*u;u=T->next;cout<Readername<<"";while(u!=NULL){cout<6、书名:"<<"《"<bookname<<"》"<<"";u=u->Lnode;}vetex=1;}Rnorder_name(T->Right,name,i);}}/////////////////////////////////////////////////////////////////////////按中序遍历遍历二叉排序树进行检索///////////voidInorder(structLibray*T){//中序遍历所有的图书节点if(T!=NULL){Inorder(T->Llink);structReader*u;u=T->rea7、d;cout<bookname<<"》";cout<bookno<<"";cout<booknum<<"";cout<bookreathur<<"";while(u!=NULL){cout<Readername<<"";u=u->Lreader;}Inorder(T->Rlink);}}voidInord8、er_search(structLibray*T,charbook
6、书名:"<<"《"<bookname<<"》"<<"";u=u->Lnode;}vetex=1;}Rnorder_name(T->Right,name,i);}}/////////////////////////////////////////////////////////////////////////按中序遍历遍历二叉排序树进行检索///////////voidInorder(structLibray*T){//中序遍历所有的图书节点if(T!=NULL){Inorder(T->Llink);structReader*u;u=T->rea
7、d;cout<bookname<<"》";cout<bookno<<"";cout<booknum<<"";cout<bookreathur<<"";while(u!=NULL){cout<Readername<<"";u=u->Lreader;}Inorder(T->Rlink);}}voidInord
8、er_search(structLibray*T,charbook
此文档下载收益归作者所有