- 1、本文档共17页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
余票查询
余票查询
#include iostream.h
#include stdio.h
#include string.h
#include conio.h
#define m 4 //3架飞机
#define n 5 //每架飞机5张票
struct node
{
char name[21];
char id[21];
int seat,plane,date;
node *next,*pre;
};
struct wait
{
char name[21];
char id[21];
char phone[8];
int seat,plane,date,count;
wait *next,*pre;
};
struct piao
{
int seat[n+1];
};
void makenull();
void makenull_piao();
void makenull_information();
void list_menu();
void list_piao();
void makenull_wait();
void list_information();
void plane_information(node *head);
void book();
void add_information(node *head,int x,int y);
void add_wait(int x,int y);
void search_delete(int x);
void write_to_file();
void show_wait();
bool comp(node *x,node*y);
node *head1,*head2,*head3,*q;
wait *wait_head,*wait_end;
char c;
piao a[m];
void main()
{
makenull();
do
{ list_menu();
coutendlchoose an operation: ;
cinc;
if (c!=6)
switch(c)
{
case 0 : show_wait();break;
case 1 : {list_piao();book();}break;
case 2 : search_delete(1);break;
case 3 : list_piao();break;
case 4 : list_information();break;
case 5 : search_delete(0);break;
default : break;
}
}while(c!=6);
coutExit System ;
}
void makenull()
{
makenull_piao();
makenull_information();
makenull_wait();
}
void list_menu()
{ coutendl;
coutendl 菜单;
coutendl ************************;
coutendl * 0 . 查看排队情况 *;
coutendl * 1 . 订票 *;
coutendl * 2 . 退票 *;
coutendl * 3 . 查看剩余票 *;
coutendl * 4 . 查看飞机信息 *;
coutendl * 5 . 查看乘客信息 *;
coutendl * 6 . 退出 *;
coutendl ************************;
coutendl;
}
void makenull_piao()
{
FILE *fp;
int i;
if((fp=fopen(piao.dat,r)) == NULL )
{
文档评论(0)