欢迎来到天天文库
浏览记录
ID:39342140
大小:66.52 KB
页数:11页
时间:2019-07-01
《一个简单的火车票售票管理系统》由会员上传分享,免费在线阅读,更多相关内容在行业资料-天天文库。
1、一个简单的火车票售票管理系统(原创)#include#include#defineMAX100#defineN50typedefstructtime//时间类型{intx,y,z;//分别对应年,月,日}TIME;typedefstructcnode//票信息类型{intno;//票号intid;//购票人证件号TIMEdate;//购票日期structcnode*next;}CNODE;typedefstructtnode//车次信息类型{chardata;//车次编号structtnode*lchild,
2、*rchild;CNODE*head;}TNODE;voidcreate();//按车次建立二叉排序树voidinsert(int);//增加新的车次(二叉排序树的插入)voiddel();//取消车次(二叉排序树节点删除)voidinorder(TNODE*);//中序遍历车次二叉排序树(仅显示车次信息)voidinorder_all(TNODE*);//中序遍历车次二叉排序树(显示车次及售票信息)voidpreorder(TNODE*);//先序遍历车次二叉排序树(仅显示车次信息)TNODE*search();//按车次编号搜索CNODE*i
3、nsert_c(CNODE*);//插入新的售票信息(单张)CNODE*insert_c_more(CNODE*);//插入新的售票信息(批量)CNODE*del_c(CNODE*,CNODE*);//退票处理(删除售票信息)CNODE*search_c(CNODE*,int);//按票号查询voidsearch_c_id(CNODE*,int);//按购票人证件号搜索(限定某车次)voidsearch_c_id_all(TNODE*,int);//按购票人证件号搜索(所有车次)voidsearch_date(CNODE*,TIME);//按购票
4、日期搜索(限定某车次)voidsearch_date_all(TNODE*,TIME);//按购票日期搜索(所有车次)voidprint_c(CNODE*);//输出售票纪录(单张)voidprint_c_all(CNODE*);//输出售票纪录(批量)TNODE*root=NULL;voidmain(){inti,func,no,ok;TNODE*t;CNODE*c;TIMEd;printf("");for(i=0;i<15;i++)printf("=");printf("列车售票信息管理系统");for(i=0;i<15;i++)
5、printf("=");printf("");printf("t1.车次信息管理");printf("t2.售票记录管理");printf("t3.售票记录查询");printf("t4.售票记录一览");printf("t5.退出系统");for(i=0;i>>>");for(i=0;
6、i7、t:printf("[错误]功能号输入有误!请重新输入!");}break;case2:printf("售票记录管理>>>>");for(i=0;i8、earch();if(t!=NULL)t->head=insert_c_more(t->head);break;case2:t=sear
7、t:printf("[错误]功能号输入有误!请重新输入!");}break;case2:printf("售票记录管理>>>>");for(i=0;i8、earch();if(t!=NULL)t->head=insert_c_more(t->head);break;case2:t=sear
8、earch();if(t!=NULL)t->head=insert_c_more(t->head);break;case2:t=sear
此文档下载收益归作者所有