宾馆客房管理软件(共11页).doc
《宾馆客房管理软件(共11页).doc》由会员分享,可在线阅读,更多相关《宾馆客房管理软件(共11页).doc(12页珍藏版)》请在淘文阁 - 分享文档赚钱的网站上搜索。
1、精选优质文档-倾情为你奉上目 录1. 问题描述32. 基本要求33系统分析和设计34. 流程图55. 程序清单66. 测试数据107. 小结及收获和体会118. 参考资料12一、问题描述当今社会旅游成为一种时尚,住宿便成为了旅游中的问题。越来越多的旅客加重了旅馆登记,运作负担。如果有一款软件可以代替人工操作,将会极大的提高工作效率。二、基本要求1) 某宾馆有301、302、303、304、305五个标准间,每个标准间可住2人;2) 链表存储结构:姓名、性别、房号、后续指针,按房间号有序;3) 能实现入住(注意性别)和退房,能按给定姓名、房号查询;4) 建议采用链表结构,但用其它方法实现也可。三
2、、系统分析和设计(1)市场分析随着我国市场经济的迅速发展和人们生活水平的不断提高, 宾馆酒店业的竞争越来越激烈。要想在竞争中取得优势, 必须在经营管理、产品服务等方面提高服务管理意识。而对宾馆的经营起决定作用的是客房管理。越来越多的宾馆管理人员已经意识到使用计算机网络和管理系统的重要性。(2)系统主要功能包括:(1)住房管理:住宿登记、客户退房(2)客房管理:客房查询(3)详细设计说明 结构体:struct customer int num; char name20;char sex;struct customer *next; cus; 相关函数:struct customer *creat
3、(void) /*定义函数,此函数带回一个指向链表头的指针*/struct customer *insert(struct customer *head,struct customer *consumer) /*插入登记客户信息函数*/struct customer *del(struct customer *head,int num) /*删除节点(客户退房的程序*/struct customer *search(struct customer *head,char c_name) /*寻找客户信息的程序*/void print(struct customer *head) /*在登记和退房
4、时输出登记入住宾馆人员信息*/(4)设计中的问题:由于链表的创建和文件操作上的课较少,加之程序设计时间较紧,上述源程序还有很多不完善之处。上述原代码中struct customer *insert(struct customer *head,struct customer *consumer)和struct customer *search(struct customer *head,char c_name)两个函数没有调试通过;寻找信息函数没有调试成功,在查找时得到的信息不对;insert函数运行还不是很完善。总之,在编写程序时遇到了很多问题。也有一些问题得到了解决,如在编写insert函数
5、时开始输入不了数据,后来查找资料,用malloc函数开辟了一个空间,可以完成数据的输入。在编写程序时我还是学到了很多。四、流程图开始(欢迎界面)选择所需操作2.登记信息1创建新系统3.退房信息4.查询信息选择所需操作按符合规定查找结束按房间查询是否输出退房人员信息输出开房人员信息五、程序清单#define NULL 0 #define LEN sizeof(struct customer) #include string.hstruct customer int num; char name20;char sex;struct customer *next; cus; struct custo
6、mer *creat(void) /*定义函数,此函数带回一个指向链表头的指针*/ struct customer *head,*p1,*p2; int n=0; p1=(struct customer *)malloc(LEN); p2=(struct customer *)malloc(LEN); printf(qing shu ru ke hu de xin xi:n); printf(nfang jian:); scanf(%d,&p1-num); printf(n); printf(xing ming:); scanf(%s,p1-name); printf(n); printf(x
7、ing bie:); scanf(%s,&p1-sex); printf(n); head=NULL; while(p1-num!= 0) /*创建链表,当输入值不为0时创建节点并添加值,继续重复;若输入值为0,结束循环并返回头节点指针。*/ n+; if(n=1) head=p1; else p2-next=p1; p2=p1; p1=(struct customer *)malloc(LEN); printf(qing shu ru ke hu de xin xi:n); printf(nfang jian:); scanf(%d,&p1-num); printf(n); printf(x
8、ing ming:); scanf(%s,p1-name); printf(n); printf(xing bie:); scanf(%s,&p1-sex); printf(n); p2-next=NULL; return(head); struct customer *insert(struct customer *head,struct customer *consumer) struct customer *p1,*p2; p1=head; p2=consumer; while(p1-next!=NULL) p1=p1-next; if(p1-next=NULL) p1-next=p2;
9、 p2-next=NULL; return(head); struct customer *del(struct customer *head,int num) /*删除节点的程序*/ struct customer *p1,*p2; if(head=NULL) /*是空表*/ printf(mei you ke hu xin xin); return(head); p1=head; /*P1指向第一个节点*/while(num!=p1-num&p1-next!=NULL)/*P1不是所要指向的节点,且后面还有节点*/ p2=p1;p1=p1-next;/*P1后移一个节点*/ if(num=
- 配套讲稿:
如PPT文件的首页显示word图标,表示该PPT已包含配套word讲稿。双击word图标可打开word文档。
- 特殊限制:
部分文档作品中含有的国旗、国徽等图片,仅作为作品整体效果示例展示,禁止商用。设计者仅对作品中独创性部分享有著作权。
- 关 键 词:
- 宾馆 客房 管理软件 11
限制150内