- 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 )
{
您可能关注的文档
- 2014必修3算法与程序.doc
- 2016年会计基础第二章第一节会计要素.doc
- 24543232322t Word 文档.doc
- 350-音乐学院函授教学大纲.doc
- 2脱硫题库.doc
- 4--需求.doc
- 4-4、供货安装类合同会签表(分合同).doc
- Android实用问题81条,解决使用中的所有问题.doc
- chepai.doc
- CPLM库存管理(二)05-08年试题及答案.doc
- 2025年渤海理工职业学院单招(数学)历年真题考点含答案解析.docx
- 2025年渤海石油职业学院单招英语2014-2024历年真题考点试卷摘选含答案解析.docx
- 2025年渤海石油职业学院单招语文2019-2024历年真题考点试卷含答案解析.docx
- 2025年淮南职业技术学院单招职业技能测试近5年真题考点含答案解析.docx
- 2025年淮南职业技术学院单招职业适应性测试历年(2019-2024年)真题考点试卷含答案解析.docx
- 70产品要求和合同9篇.docx
- 手把手教你学stm32-小工具.pptx
- [合同协议]内部施工承包合同9篇.docx
- 论文著作权转让合同范本5篇.docx
- 数学文卷届贵州省遵义市四中学高三考.pdf
文档评论(0)