资源简介
【问题描述】
航空客运订票的业务活动包括:查询航线、客票预定和办理退票等。试设计一个航空客运订票系统,以使上述业务可以借助计算机来完成。
【基本要求】
(1)每条航线所涉及的信息有:终点站名、航班号、飞机号、飞行周日(星期几)、乘员定额、余票量、已订票的客户名单(包括姓名、订票量、舱位等级1,2或3)以及等候替补的客户名单(包括姓名,所需票量);
(2)系统能实现的操作和功能如下:
查询航线:根据旅客提出的终点站名输出下列信息:航班号、飞机号、星期几飞行,最近一天航班的日期和余票额;
承办订票业务:根据客户提出的要求(航班号、订票数额)查询该航班票额情况,若尚有余票,则为客户办理订票手续,输出
代码片段和文件信息
#include
#include
#include
#include
#include
#include
#define N 20
using namespace std;
typedef struct Orderbill{
int number; //座位号
int seatdegree; //舱位等级
struct Orderbill *next;
}Orderbill; //已订票客户的票结点
typedef struct orderman{
string name; //姓名
Orderbill *billhead; //票链表的头指针
struct orderman *next;
}orderman; //已订票客户的结点
typedef struct replaceman{
string name;
int bill[4]; //bill[i]表示第i等舱位的需求量
struct replaceman *next;
}replaceman; //等候替补的客户的结点
typedef struct replacequeue{
replaceman *front;
replaceman *rear;
}replacequeue; //等候替补客户队列
typedef struct {
string end; //终点站名
st
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 77 2008-09-17 23:13 program\011.txt
文件 11 2008-09-17 23:13 program\012.txt
文件 43 2008-09-17 23:13 program\021.txt
文件 1 2008-09-17 23:13 program\022.txt
文件 17 2008-09-17 23:13 program\031.txt
文件 1 2008-09-17 23:13 program\032.txt
文件 1 2008-09-17 23:13 program\041.txt
文件 1 2008-09-17 23:13 program\042.txt
文件 16 2008-09-17 23:13 program\051.txt
文件 1 2008-09-17 23:13 program\052.txt
文件 19424 2008-09-17 23:21 program\1.cpp
文件 355 2008-09-17 23:13 program\airline.txt
文件 77 2008-09-12 19:28 program\Debug\011.txt
文件 453969 2008-09-17 23:13 program\Debug\1.obj
文件 0 2008-09-17 23:13 program\Debug\1.sbr
文件 137 2008-09-12 19:28 program\Debug\airline.txt
文件 353280 2008-09-17 23:13 program\Debug\program.bsc
文件 622686 2008-09-17 23:13 program\Debug\program.exe
文件 867680 2008-09-17 23:13 program\Debug\program.ilk
文件 2234996 2008-09-05 21:50 program\Debug\program.pch
文件 1213440 2008-09-17 23:13 program\Debug\program.pdb
文件 91136 2008-09-17 23:13 program\Debug\vc60.idb
文件 135168 2008-09-17 23:13 program\Debug\vc60.pdb
文件 4288 2008-09-05 22:26 program\program.dsp
文件 522 2008-07-18 12:42 program\program.dsw
文件 66560 2008-09-17 23:21 program\program.ncb
文件 49664 2008-09-17 23:21 program\program.opt
文件 1024 2008-09-17 23:13 program\program.plg
目录 0 2008-09-17 23:13 program\Debug
目录 0 2008-09-17 23:21 program
............此处省略3个文件信息
相关资源
- Thinking in C++中文版
- C++语言程序设计_第四版_郑莉_高清p
- 东南大学C++课件-何洁月80讲(总).
- DevC++
- C/C++实验系统
- 一个月挑战c++
- vsC++编程新手指导
- C++语言编程器
- VS2008 windows应用程序C++
- C++深入版
- C++PPT
- C++沉思录
- c++核心编程技术
- C++出错提示英汉对照
- c++/c语言学习系统
- C和C++安全编码(中文版)
- c++基础教程
- VC++6.0
- Microsoft Visual C++ 2010
- 嵌入式CC++语言精华文章集锦
- 交通灯管理仿真程序
- CC++库函数
- C++_STL使用例子大全
- C C++精华帖合辑(新手必看)
- C++ 基本语法及实例说明
- 《算法竞赛入门经典》
- C++API
- c++深度剖析木马程序
- c++练习题
- vc++6.0初学入门教程(PDF编辑版)
评论
共有 条评论