机场订票.cpp
上传用户:qin8091
上传日期:2021-04-16
资源大小:487k
文件大小:15k
源码类别:

数据结构

开发平台:

DOS

  1. /*头文件声明*/
  2. #include <conio.h>
  3. #include <iomanip.h>
  4. #include<string.h>
  5. #include<stdio.h> 
  6. #include<stdlib.h> 
  7. #include<iostream.h> 
  8. #include<math.h>
  9. #include<windows.h> 
  10. /* 函数结果状态代码 */
  11. #define TRUE 1
  12. #define FALSE 0
  13. #define OK 1
  14. #define ERROR 0
  15. #define MAX 100//航班最大数量,也是航班号最大值
  16. #define NULL 0
  17. typedef int Status; // Status是函数的类型,其值是函数结果状态代码,如OK等 
  18. typedef struct Customer//乘客信息
  19. {
  20.  char CustomerName[20];  //乘客名字
  21.  int ID;                 //乘客证件号
  22.  int TicketsCount;       //定票数量
  23.  int CheckNo;            //订单号
  24.  struct Customer *next;  //下一个乘客结点指针
  25.  }Customer;
  26. typedef struct Flight//航班信息
  27. {
  28. int FlightNo;            //航班号
  29. char Time[200];          //起降时间
  30. char City[100];          //起飞抵达城市
  31. int Price;               //机票价格
  32. float Discount;          //票价折扣
  33. int SeatsAmount;         //航班总票数
  34. int FreeAmount;          //剩余机票数
  35. struct Flight *next;     //下一个航班结点指针
  36. Customer *CustList;      //定该航班的乘客链表的头指针
  37. }Flight;
  38. Flight *Head;//航班链表头指针
  39. Flight *p;//航班链表的尾指针
  40. Flight *q;//在执行查找操作后,指向所找到的航班结点
  41. Customer *Cust[MAX];//对应于各个航班的乘客链表的尾指针
  42. int ChecksCount;//订单总数
  43. char Iscontinue;//全局变量,用于在用户判断是否执行一项操作后,存储用户的输入(y/n)
  44. char pin[6]={'0','0','0','0','0','0' };//系统的登入密码
  45. Status Load();//登入函数,用于验证密码
  46. void Menu();//主菜单函数
  47. void FlightAdd();//航班添加函数
  48. void FlightSearch();//航班查找函数
  49. Status FlightNoSearch(int);//按航班号查找航班的函数
  50. Status FlightCitySearch(Flight *y,char *city);//按起飞抵达城市查找航班的函数
  51. void Reserve();//定票操作函数
  52. void Cancel();//退票操作函数
  53. void CustomerSearch();//按航班号查找此航班的乘客信息函数
  54. void Modify();//修改航班信息函数
  55. void FlightPrint(Flight *r);//输出航班信息函数,用于其他函数调用以便输出航班信息
  56. void main()//主函数
  57. {
  58. system("cls");
  59. int a;
  60. a=Load();//调用登入函数
  61. switch(a)//判断是否有权登入系统
  62. {
  63. case 1:
  64. cout<<"ntttt您输入的密码正确!";
  65. Menu();
  66. break;
  67. case 0:
  68. cout<<"您输入的密码错误!无权限登入!";
  69. break;
  70. default:
  71. cout<<"error!";
  72. }
  73. }
  74. Status Load()//登入函数,用于验证密码
  75. {
  76. char a;
  77. int i,m=0,n=0;
  78.     while(n<=2)//每个用户有三次等如机会,判断密码错误是否超过了三次
  79. {
  80. m=0;
  81. printf("nnttt  *******************************nn");
  82. printf("nttt          请输入六位密码n");
  83. printf("nnttt  *******************************nn");
  84. for(i=0;i<=5;i++)
  85. {
  86. a=getch();
  87.     putch('*');
  88. if(a==pin[i])
  89. m++;
  90. }
  91. if(m==6)//逐个判断这串密码是否正确
  92. break;
  93. else
  94. {
  95. cout<<"ntttt密码错误,请重新输入!!";
  96. n++;
  97. }
  98. }
  99. if(n<=2)//当用户在三次机会内将密码输入正确则返回OK,否则返回ERROR
  100. return OK;
  101. else 
  102. return ERROR;
  103. }
  104. void Menu()//主菜单函数
  105. {
  106. system("cls");
  107. int a=0;
  108. cout<<"nttt*****************************";
  109. cout<<"nnttt欢迎进入航空定票系统";
  110. cout<<"nntttt1.录入航班信息";
  111. cout<<"nntttt2.查询航班信息";
  112. cout<<"nntttt3.客户定票";
  113. cout<<"nntttt4.客户退票";
  114. cout<<"nntttt5.客户资料查询";
  115. cout<<"nntttt6.修改航班信息";
  116. cout<<"nntttt7.退出系统";
  117. cout<<"nttt*****************************";
  118. cout<<"ntttt请选择:";
  119. cin>>a;
  120. switch(a)//判断用户的选择,并调用相应的函数
  121. {
  122. case 1:
  123. FlightAdd();
  124. break;
  125. case 2:
  126. FlightSearch();
  127. break;
  128. case 3:
  129. Reserve();
  130. break;
  131. case 4:
  132. Cancel();
  133. break;
  134. case 5:
  135. CustomerSearch();
  136. break;
  137. case 6:
  138. Modify();
  139. break;
  140. case 7:
  141. break;
  142. default:
  143. cout<<"ntttt输入错误!请重新输入"<<endl;
  144. Menu();
  145. }
  146. }
  147. void FlightAdd()//航班添加函数
  148. {
  149. system("cls");
  150. int flightNo;//临时存放用户输入的航班号
  151. Flight *t;//临时航班结点,用于添加到航班链表中
  152. cout<<"ntt请输入航班号(1-100):";
  153. cin>>flightNo;
  154. while(FlightNoSearch(flightNo))//航班号要唯一,先判断此航班是否存在,若无重复再存入系统
  155. {
  156. cout<<"tt此航班号已存在!请重新输入航班号:";
  157. cin>>flightNo;
  158. }
  159. if(Head==NULL)//航线为空
  160. {
  161. t=p=new Flight;//建立首个航线
  162. p->next=NULL;
  163. Head=p;
  164. }
  165. else
  166. {
  167. t=new Flight; //建立航线结点
  168. t->next=NULL;
  169. p->next=t;   //前一航线结点指向当前航班结点
  170. p=t;        //P仍指向航班链表的尾结点
  171. }
  172. p->FlightNo=flightNo;
  173. cout<<"n请输入航班起降时间(按'2008-1-3-5:30----2008-1-3-6:30'的格式):n";
  174. cin>>p->Time;
  175. cout<<"n请输入起飞抵达城市(按'北京----上海'的格式):";
  176. cin>>p->City;
  177. cout<<"n请输入航班票价:";
  178. cin>>p->Price;
  179. cout<<"n请输入票价折扣:";
  180. cin>>p->Discount;
  181. cout<<"n请输入航班总票数:";
  182. cin>>p->SeatsAmount;
  183. p->FreeAmount=p->SeatsAmount;
  184. p->CustList=NULL;
  185. cout<<"ntt航班信息输入完毕!是否要继续输入?(y/n)";
  186. cin>>Iscontinue;
  187. if(Iscontinue=='y')//判断用户的选择
  188. FlightAdd();
  189. else
  190. {
  191. p->next=NULL;
  192. cout<<"nttt是否要返回上级菜单?(y/n)";
  193. cin>>Iscontinue;
  194. if(Iscontinue=='y')//判断用户是否要返回上级菜单
  195. Menu();
  196. }
  197. }
  198. void FlightSearch()//航班查找函数
  199. {
  200. system("cls");
  201. int a=0,b;
  202. int flightNo;//临时存放用户输入的航班号
  203. char city[40];//临时存放用户输入的起飞抵达城市
  204. cout<<"nttt*****************************";
  205. cout<<"ntttt查询项目";
  206. cout<<"ntttt1.按航班号查询";
  207. cout<<"ntttt2.按起飞抵达城市查询";
  208. cout<<"nttt*****************************";
  209. cout<<"ntttt请输入查询项目:";
  210. cin>>a;
  211. switch(a)//判断用户的选择
  212. {
  213. case 1://按航班号查询
  214. cout<<"ntt请输入要查询的航班号:";
  215. cin>>flightNo;
  216. b=FlightNoSearch(flightNo);
  217. if(b)//若航班号存在,则输出此航班信息,否则告诉用户没有找到此航班
  218. FlightPrint(q);
  219. else
  220. cout<<"nttttt没有找到此航班!";
  221. break;
  222. case 2://按起飞抵达城市查找
  223. cout<<"ntt请输入要查询的起飞抵达城市(按'北京----上海'的格式):";
  224. cin>>city;
  225. b=FlightCitySearch(Head,city);
  226. if(b)//若有此航线上的航班,则逐个查找并输出此航线上所有航班的信息,
  227. { //否则告诉用户没有找到此航班
  228. FlightPrint(q);
  229. b=FlightCitySearch(q->next,city);
  230. while(b)
  231. {
  232. FlightPrint(q);
  233. b=FlightCitySearch(q->next,city);
  234. }
  235. }
  236. else
  237. cout<<"nttttt没有找到航班!";
  238. break;
  239. default:
  240. cout<<"ntttt输入错误!"<<endl;
  241. }
  242. cout<<"nttt是否要继续查找?(y/n)";
  243. cin>>Iscontinue;
  244. if(Iscontinue=='y')//判断用户的选择
  245. FlightSearch();
  246. else
  247. {
  248. cout<<"nttt是否要返回上级菜单?(y/n)";
  249. cin>>Iscontinue;
  250. if(Iscontinue=='y')//判断用户是否要返回上级菜单
  251. Menu();
  252. }
  253. }
  254. Status FlightNoSearch(int flightNo)//按航班号查找航班的函数
  255. {
  256. system("cls");
  257. Flight *x;//指向正在被查找的结点
  258. x=Head;//从头开始查找
  259. while(x!=NULL)
  260. {
  261. if(x->FlightNo==flightNo)//找到相应的航班,使得q指向此航班结点
  262. {
  263. q=x;
  264. return TRUE;
  265. }
  266. x=x->next;//指针下移,逐个向后查找
  267. }
  268. return FALSE;
  269. }
  270. Status FlightCitySearch(Flight *y,char *city)//按起飞抵达城市查找航班的函数
  271. {
  272. while(y!=NULL)//从提供的航班结点开始查找
  273. {
  274. if(strcmp(y->City,city)==0)//找到相应的航班,使得q指向此航班结点
  275. {
  276. q=y;
  277. return TRUE;
  278. }
  279. y=y->next;//指针下移,逐个向后查找
  280. }
  281. return FALSE;
  282. }
  283. void Reserve()//定票操作函数
  284. {
  285. system("cls");
  286. int flightNo;//临时存放用户输入的航班号
  287. int ticketsCount;//临时存放用户输入的定票数
  288. Customer *n;//存放建立的乘客临时结点
  289. cout<<"nttt请输入需要预定的航班号:";
  290. cin>>flightNo;
  291. if(FlightNoSearch(flightNo))//找到此航班
  292. {
  293. cout<<"ntttt请输入定票数(正整数)";
  294. cin>>ticketsCount;
  295. if(ticketsCount<=q->FreeAmount)//当剩余票数大于客户所定的票数
  296. {
  297. if(q->CustList==NULL)//此航班的乘客头指针为空
  298. {
  299. n=new Customer;//建立乘客头结点
  300. n->next=NULL;
  301. q->CustList=Cust[flightNo]=n;//头指针尾指针都指向这个结点
  302. }
  303. else
  304. {
  305. n=new Customer;//建立乘客结点
  306. n->next=NULL;
  307. Cust[flightNo]->next=n;//上一个乘客结点指向下一个乘客结点
  308. Cust[flightNo]=n;//尾结点指向建立的这个结点
  309. }
  310. q->FreeAmount-=ticketsCount;//此航班的剩余机票数要减少,即减去此乘客需要定的票数
  311. ChecksCount++;//订单数加一
  312. n->CheckNo=ChecksCount;//乘客的订单号有序,即为此时的订单数
  313. n->TicketsCount=ticketsCount;
  314. cout<<"ntttt请输入您的姓名:";
  315. cin>>n->CustomerName;
  316. cout<<"ntttt请输入您的证件号:";
  317. cin>>n->ID;
  318. cout<<"ntttt定票成功!";
  319. }
  320. else if(q->FreeAmount==0)//当此航班为剩余机票时
  321. {
  322. cout<<"ntttt对不起,该航班的机票已全部售完!";
  323. cout<<"ntttt是否需要此航线上其他航班的信息?(y/n)";
  324. cin>>Iscontinue;
  325. if(Iscontinue=='y')//当用户需要此航线上其他航班的信息时,查找是否有符合的航班
  326. {
  327. int a;
  328. Flight *z=q;
  329. a=FlightCitySearch(Head,z->City);
  330. if(z==q)
  331. a=FlightCitySearch(z->next,z->City); 
  332. if(a)
  333. {
  334. if(z!=q)//若此航线上还有其他航班,则输出其他航班信息
  335. FlightPrint(q);
  336. a=FlightCitySearch(q->next,z->City);
  337. while(a)
  338. {
  339. FlightPrint(q);
  340. a=FlightCitySearch(q->next,z->City);
  341. }
  342. }
  343. else
  344. cout<<"nttttt没有找到此航线上其他航班!";
  345. }
  346. }
  347. else//当用户需要的定的机票数大于剩余机票数时
  348. {
  349. cout<<"ntttt对不起,该航班的剩余票数少于您的定票数!";
  350. cout<<"ntttt是否需要此航线上其他航班的信息?(y/n)";
  351. cin>>Iscontinue;
  352. if(Iscontinue=='y')//当用户需要此航线上其他航班的信息时,查找是否有符合的航班
  353. {
  354. int a;
  355. Flight *z=q;
  356. a=FlightCitySearch(Head,z->City);
  357. if(z==q)
  358. a=FlightCitySearch(z->next,z->City); 
  359. if(a)
  360. {
  361. if(z!=q)//若此航线上还有其他航班,则输出其他航班信息
  362. FlightPrint(q);
  363. a=FlightCitySearch(q->next,z->City);
  364. while(a)
  365. {
  366. FlightPrint(q);
  367. a=FlightCitySearch(q->next,z->City);
  368. }
  369. }
  370. else
  371. cout<<"nttttt没有找到此航线上其他航班!";
  372. }
  373. }
  374. }
  375. else
  376. cout<<"ntttt对不起,没有找到此航班!";
  377. cout<<"nttt是否要继续定票?(y/n)";
  378. cin>>Iscontinue;
  379. if(Iscontinue=='y')//判断用户的选择
  380. Reserve();
  381. else
  382. {
  383. cout<<"nttt是否要返回上级菜单?(y/n)";
  384. cin>>Iscontinue;
  385. if(Iscontinue=='y')//判断用户是否返回上级菜单
  386. Menu();
  387. }
  388. }
  389. void Cancel()//退票操作函数
  390. {
  391. system("cls");
  392. int flightNo;//临时存放用户输入的航班号
  393. int id;//临时存放用户输入的证件号
  394. Customer *s;//用于查找乘客结点时
  395. cout<<"ntttt请输入航班号:";
  396. cin>>flightNo;
  397. if(FlightNoSearch(flightNo))//找到用户输入的航班
  398. {
  399. s=q->CustList;
  400. cout<<"ntttt请输入您的证件号:";
  401. cin>>id;
  402. if(s==NULL)//航班乘客链表为空
  403. {
  404. cout<<"ntttt该航班无人定票,无法进行退票操作!";
  405. cout<<"nttt是否要继续退票?(y/n)";
  406. cin>>Iscontinue;
  407. if(Iscontinue=='y')//判断用户的选择
  408. Cancel();
  409. else
  410. {
  411. cout<<"nttt是否要返回上级菜单?(y/n)";
  412. cin>>Iscontinue;
  413. if(Iscontinue=='y')//判断用户是否返回上级菜单
  414. Menu();
  415. else
  416. return;
  417. }
  418. }
  419. else if(s->ID==id)//若此乘客即为该航班的第一个乘客
  420. {
  421. char a;
  422. cout<<"nttt确定要退票吗?(y/n)";
  423. cin>>a;
  424. if(a=='y')
  425. {
  426. q->FreeAmount+=s->TicketsCount;//该航班的剩余机票数增加,即加上此客户原定票数
  427. q->CustList=s->next;//删除此乘客结点
  428. cout<<"ntttt退票成功!";
  429. }
  430. cout<<"nttt是否要继续退票?(y/n)";
  431. cin>>Iscontinue;
  432. if(Iscontinue=='y')//判断用户的选择
  433. Cancel();
  434. else
  435. {
  436. cout<<"nttt是否要返回上级菜单?(y/n)";
  437. cin>>Iscontinue;
  438. if(Iscontinue=='y')//判断用户是否返回上级菜单
  439. Menu();
  440. else
  441. return;
  442. }
  443. }
  444. else//若此乘客不是该航班的第一个乘客
  445. {
  446. while(s!=NULL)
  447. {
  448.  if(s->next!=NULL)
  449.  { 
  450. if(s->next->ID==id)//找到此乘客
  451. {
  452. char a;
  453. cout<<"nttt确定要退票吗?(y/n)";
  454. cin>>a;
  455. if(a=='y')
  456. {
  457. q->FreeAmount+=s->TicketsCount;//该航班的剩余机票数增加,即加上此客户原定票数
  458. s->next=s->next->next;//删除此乘客结点
  459. cout<<"ntttt退票成功!";
  460. }
  461. else
  462. cout<<"nttt此次退票操作取消!";
  463. break;
  464. }
  465.  }
  466.  s=s->next;//指针下移,逐个向后查找
  467. }
  468. if(s==NULL)//若指针已移动到链表的尾部仍没找到此乘客
  469. cout<<"ntttt对不起,在此航班中未找到此乘客!";
  470. cout<<"nttt是否要继续退票?(y/n)";
  471. cin>>Iscontinue;
  472. if(Iscontinue=='y')//判断用户的选择
  473. Cancel();
  474. else
  475. {
  476. cout<<"nttt是否要返回上级菜单?(y/n)";
  477. cin>>Iscontinue;
  478. if(Iscontinue=='y')//判断用户是否返回上级菜单
  479. Menu();
  480. else
  481. return;
  482. }
  483. }
  484. }
  485. else//若没有找到用户输入的航班
  486. {
  487. cout<<"ntttt对不起,没有此航班!";
  488. cout<<"nttt是否要继续退票?(y/n)";
  489. cin>>Iscontinue;
  490. if(Iscontinue=='y')//判断用户的选择
  491. Cancel();
  492. else
  493. {
  494. cout<<"nttt是否要返回上级菜单?(y/n)";
  495. cin>>Iscontinue;
  496. if(Iscontinue=='y')//判断用户是否要返回上级菜单
  497. Menu();
  498. }
  499. }
  500. }
  501. void CustomerSearch()//按航班号查找此航班的乘客信息函数
  502. {
  503. system("cls");
  504. int flightNo;//临时存放用户输入的航班号
  505. Customer *f;//用于查找乘客结点时
  506. cout<<"nttt请输入需要查找的客户所属的航班号:";
  507. cin>>flightNo;
  508. if(FlightNoSearch(flightNo))//找到该航班
  509. {
  510. f=q->CustList;//从头结点开始
  511. if(f==NULL)
  512. cout<<"nttt对不起,此航班暂时无人定票!";
  513. else//若乘客链表不为空,则输出航班信息和乘客信息
  514. {
  515. FlightPrint(q);
  516. cout<<"nttt客户信息如下";
  517. }
  518. while(f!=NULL)//若链表未结束,则逐个输出乘客信息
  519. {
  520. cout<<"nttt客户姓名:";
  521. cout<<f->CustomerName;
  522. cout<<"nttt客户证件号:";
  523. cout<<f->ID;
  524. cout<<"nttt定票数量:";
  525. cout<<f->TicketsCount;
  526. cout<<"nttt订单号:";
  527. cout<<f->CheckNo;
  528. f=f->next;
  529. }
  530. }
  531. else//没有找到此航班
  532. cout<<"ntttt对不起,没有此航班!";
  533. cout<<"nttt是否要继续查找?(y/n)";
  534. cin>>Iscontinue;
  535. if(Iscontinue=='y')//判断用户的输入
  536. CustomerSearch();
  537. else
  538. {
  539. cout<<"nttt是否要返回上级菜单?(y/n)";
  540. cin>>Iscontinue;
  541. if(Iscontinue=='y')//判断用户是否返回上级菜单
  542. Menu();
  543. }
  544. }
  545. void Modify()//修改航班信息函数
  546. {
  547. system("cls");
  548. int flightNo;//临时存放用户输入的航班号
  549. cout<<"ntttt请输入需要修改的航班号:";
  550. cin>>flightNo;
  551. if(FlightNoSearch(flightNo))//找到此航班,提供原航班信息,并且存储用户新输入的航班信息
  552. {
  553. cout<<"n原航班起降时间为:";
  554. cout<<q->Time;
  555. cout<<"n请输入新的航班起降时间(按'2007-1-3-5:30----2007-1-3-6:30'的格式):n";
  556. cin>>q->Time;
  557. cout<<"n原起飞抵达时间为:";
  558. cout<<q->City;
  559. cout<<"n请输入新的起飞抵达城市(按'北京----上海'的格式):";
  560. cin>>q->City;
  561. cout<<"n原航班票价为:";
  562. cout<<q->Price;
  563. cout<<"n请输入新的航班票价:";
  564. cin>>q->Price;
  565. cout<<"n原票价折扣为:";
  566. cout<<q->Discount;
  567. cout<<"n请输入新的票价折扣:";
  568. cin>>q->Discount;
  569. cout<<"n航班信息修改完毕!";
  570. }
  571. cout<<"nttt是否要继续修改?(y/n)";
  572. cin>>Iscontinue;
  573. if(Iscontinue=='y')//判断用户的选择
  574. Modify();
  575. else
  576. {
  577. p->next=NULL;
  578. cout<<"nttt是否要返回上级菜单?(y/n)";
  579. cin>>Iscontinue;
  580. if(Iscontinue=='y')//判断用户是否返回上级菜单
  581. Menu();
  582. }
  583. void FlightPrint(Flight *r)//输出航班信息函数,用于其他函数调用以便输出航班信息
  584. {
  585. system("cls");
  586. cout<<"ntttt航班信息如下";
  587. cout<<"nttt航班号:";
  588. cout<<r->FlightNo;
  589. cout<<"nttt起降时间:";
  590. cout<<r->Time;
  591. cout<<"nttt起飞抵达城市:";
  592. cout<<r->City;
  593. cout<<"nttt航班票价:";
  594. cout<<r->Price;
  595. cout<<"nttt票价折扣:";
  596. cout<<r->Discount;
  597. cout<<"nttt航班总票数:";
  598. cout<<r->SeatsAmount;
  599. cout<<"nttt剩余机票数:";
  600. cout<<r->FreeAmount;
  601. }