C++資料結構--機票預訂系統(付原始碼)
實驗目的
編寫一個簡單的機票預訂系統。該程式顯示一個帶有下列選項的選單:預訂機票、取消預訂、檢視某人是否預定了機票,以及顯示預訂乘客。這些資訊儲存在一個按照字母排列的名字連結串列中。在程式的簡化版中,假設只為一趟航班預訂機票。在完全版中不再限制航班的數目。建立一個航班連結串列,其中每個節點都指向乘客連結串列的指標。
/*******************************list.h**********************/
#include <iostream>
#include <malloc.h>
#include <string.h>
using namespace std;
typedef struct TK{
char Name[20];
int SeatId;
struct TK *next;
}Ticket;
typedef struct FLY
{
char FlightId[10];
int Seat[50];
Ticket *PersonHead;
struct FLY *next;
}Flight;
class Person{
public:
void ListInitiate(Flight **head);
bool Check(int *Seat,int Ch);
void Insert(Flight *head);
int Delete(Flight *head);
void show(Flight *head);
void Search(Flight *head);
void AddFlght(Flight *head);
void DeleteFlght(Flight *head);
};
/*******************************main.cpp**********************/
#include "list.h"
int menu()
{
int option;
cout<<endl<<endl;
cout<<"主選單"<<endl;
cout<<" 1.Booking the ticket of flighting"<<endl;
cout<<" 2.Cancel the flighting"<<endl;
cout<<" 3.Display the information "<<endl;
cout<<" 4.Search"<<endl;
cout<<" 5.Add a Flight"<<endl;
cout<<" 6.Delete a Flight"<<endl;
cout<<" 0.Exit"<<endl<<endl;
cout<<"Please input your option:";
cin>>option;
getchar();
cout<<endl;
if(option>=0&&option<=6)
return option;
else
return -1;
}
int main()
{
cout<<"------------------------->航班管理系統<<<<-----------------------------"<<endl;
cout<<" 歡迎你使用該航班系統"<<endl;
Flight *head;
Person P;
P.ListInitiate(&head);
while(true)
{
switch(menu( ))
{
case 1:P.Insert(head);break; //預訂
case 2:P.Delete(head);break; //取消
case 3:P.show(head);break; //顯示
case 4:P.Search(head);break; //查詢
case 5:P.AddFlght(head);break; //新增航班
case 6:P.DeleteFlght(head);break; //刪除航班
case 0:exit(0);
default:cout<<"Choice error!\n";
}
}
return 0;
}
/*****************************************passenger.cpp*************************/
#include "List.h"
void Person::ListInitiate(Flight **head)
{
int count=0;
*head = (Flight *)malloc(sizeof(Flight));
(*head)->PersonHead=(Ticket *)malloc(sizeof(Ticket));
(*head)->PersonHead->next=NULL;
(*head)->next=NULL;
for(int i=0;i<50;i++)
{
(*head)->Seat[i]=0;
}
}
bool Person::Check(int *Seat,int Ch)
{
int i;
for(int i=0;i<50;i++)
{
if(Ch==i&&Seat[i]!=1)return 1;
}
return 0;
}
Flight* Index(Flight *head,char *Id)
{
Flight *p=head->next;
while(p)
{
if(strcmp(p->FlightId,Id)==0)
{
return p;
}
p=p->next;
}
return NULL;
}
/*******************************預定******************************/
void Person::Insert(Flight *head)
{
int count=0;
int Ch;
Flight *s=head;
if(s->next==NULL)
{
cout<<"暫無航班!"<<endl;
return ;
}
cout<<"航班列表:"<<endl;
s=s->next;
while(s!=NULL)
{
puts(s->FlightId);
count++;
if(count%5==0)
cout<<"\n";
s=s->next;
}
count=0;
char FID[10];
cout<<"輸入航班ID:";
gets(FID);
s=Index(head,FID);
if(s==NULL)
{
cout<<"輸入ID有誤"<<endl;
return;
}
cout<<endl;
cout<<"有以下座位可供選擇:"<<endl;
for(int i=0;i<50;i++)
{
if(s->Seat[i]!=1)
{
cout<<i<<"號"<<"\t";
count++;
if(count%5==0)
cout<<"\n";
}
}
cout<<endl;
cout<<"輸入座位號:\n";
cin>>Ch;
getchar();
if(!Check(head->Seat,Ch))
{
cout<<"This Seat have been booked or it is non-existent";
return ;
}
s->Seat[Ch]=1;
char name[20];
cout<<endl;
cout<<"Input your Name:";
gets(name);
Ticket *p=s->PersonHead,*q;
while(p->next!=NULL)
{
if(strcmp(p->next->Name,name)>0)
break;
p=p->next;
}
q=(Ticket *)malloc(sizeof(Ticket));
q->next=p->next;
p->next=q;
strcpy(q->Name,name);
q->SeatId=Ch;
}
/*******************************取消預定******************************/
int Person::Delete(Flight *head)
{
char name[20],FID[10];
cout<<"Input your Name:";
gets(name);
getchar();
Flight *s;
cout<<"Input the Flight ID:";
gets(FID);
s=Index(head,FID);
if(s==NULL)
{
cout<<"輸入ID有誤"<<endl;
return 0;
}
Ticket *p=s->PersonHead->next,*pre=s->PersonHead;
int flag=0;
while(p!=NULL)
{
if(strcmp(p->Name,name)==0){
flag=1;
break;
}
pre=p;
p=p->next;
}
if(flag==1){
pre->next=p->next;
s->Seat[p->SeatId]=0;
free(p);
cout<<"你的機票已經取消成功";
}
else
{
cout<<"您還沒訂票\n";
return 0;
}
return 1;
}
/*******************************顯示資訊******************************/
void Person::show(Flight *head)
{
Flight *s;
char FID[10];
cout<<"Input The Flight ID:";
gets(FID);
s=Index(head,FID);
if(s==NULL)
{
cout<<"輸入ID有誤"<<endl;
return;
}
Ticket *p=s->PersonHead->next;
if(p==NULL)
{
cout<<"還沒乘客訂票"<<endl;
return;
}
while(p!=NULL)
{
cout<<"乘客: "<<p->Name<<" 座位號:" <<p->SeatId;
p=p->next;
}
}
/*******************************查詢相關資訊******************************/
void Person::Search(Flight *head)
{
char name[20];
cout<<"Input Your Name:";
gets(name);
Flight *s;
char FID[10];
cout<<"Input The Flight ID:";
gets(FID);
s=Index(head,FID);
if(s==NULL)
{
cout<<"輸入ID有誤"<<endl;
return;
}
Ticket *p=s->PersonHead->next;
int flag=0;
while(p!=NULL)
{
if(strcmp(p->Name,name)==0){
flag=1;
break;
}
p=p->next;
}
if(flag==1){
cout<<name<<" 已訂機票"<<endl;
}
else
{
cout<<name<<" 未訂機票"<<endl;
}
}
/*******************************增加航班**********************************/
void Person::AddFlght(Flight *head)
{
char FlightID[10];
Flight *p=head,*q;
cout<<" 輸入航班ID:";
gets(FlightID);
while(p->next)
{
p=p->next;
}
ListInitiate(&q);
p->next=q;
strcpy(q->FlightId,FlightID);
cout<<"——航班已新增成功!";
}
/**********************************刪除航班*******************************************/
void Person::DeleteFlght(Flight *head)
{
char FlightID[10];
int flag=0;
Flight *p=head->next,*q=head;
int count=0;
Flight *s=head;
if(s->next==NULL)
{
cout<<" 暫無航班!"<<endl;
return ;
}
cout<<" 航班列表:"<<endl;
s=s->next;
while(s!=NULL)
{
cout<<s->FlightId<<endl;
count++;
if(count%5==0)
cout<<"\n";
s=s->next;
}
cout<<" 輸入航班ID:";
gets(FlightID);
while(p)
{
if(strcmp(p->FlightId,FlightID)==0)
{
flag=1;break;
}
q=p;
p=p->next;
}
if(flag==0)
{
cout<<" 該航班ID不存在!";
return ;
}
q->next=q->next->next;
free(p);
cout<<" 航班已刪除!\n";
}
效果如下:
相關文章
- jsp+servlet+mysql實現機票預訂航班系統(含原始碼、MySQL、包執行)JSServletMySql原始碼
- 機票預訂系統淪陷,使用者隱私岌岌可危
- Yieldr:機票預訂研究 分析消費者線上預訂行為
- HBase 系統架構及資料結構架構資料結構
- Hbase 系統架構與資料結構架構資料結構
- Redis資料結構概覽(原始碼分析)Redis資料結構原始碼
- HashMap底層資料結構原始碼解析HashMap資料結構原始碼
- c++基本資料結構C++資料結構
- C++ 資料結構-堆C++資料結構
- 知識付費系統原始碼基於PHP開源的網站內容付費原始碼原始碼PHP網站
- 【資料結構】雙連結串列(c++)資料結構C++
- ThinkPHP框架的知識付費系統原始碼AntPayCMSPHP框架原始碼
- C++資料結構和pb資料結構的轉換C++資料結構
- 航旅縱橫大資料:五一假期國內機票預訂量同比增長約3.6倍大資料
- slab原始碼分析--主要資料結構分析原始碼資料結構
- 資料結構之堆(c++)資料結構C++
- C++資料結構-佇列C++資料結構佇列
- [Tomcat原始碼系列]結構解析 1)總體結構預覽Tomcat原始碼
- CRMEB知識付費程式系統原始碼 全開源原始碼
- 微商代理訂貨系統開發原始碼部署原始碼
- Vue原始碼探究-資料繫結邏輯架構Vue原始碼架構
- Redis原始碼分析-底層資料結構盤點Redis原始碼資料結構
- redis資料結構原始碼閱讀——字串編碼過程Redis資料結構原始碼字串編碼
- 資料結構 歸併排序 C++資料結構排序C++
- 攜程:2020年端午旅行大資料 機票預訂需求已恢復去年同期70%大資料
- 寶付揭秘ERP系統基礎資料
- 超市管理系統原始碼 超市進銷存管理系統原始碼 (CS架構)原始碼架構
- 線上客服系統原始碼/IM原始碼框架架構原始碼框架架構
- Redis原始碼學習——基礎資料結構之SDSRedis原始碼資料結構
- 侯捷C++ STL體系結構與原始碼剖析:關於moveable的說明C++原始碼
- 私人訂製之資料結構(排序演算法)資料結構排序演算法
- vue資料繫結原始碼Vue原始碼
- C++資料結構連結串列的基本操作C++資料結構
- 資料結構 - 單連結串列 C++ 實現資料結構C++
- 【資料結構】實現單連結串列(c++)資料結構C++
- 【資料結構】雙迴圈連結串列(c++)資料結構C++
- 資料結構學習(C++)——圖(總結) (轉)資料結構C++
- 資料結構學習(C++)——樹(總結) (轉)資料結構C++