C++实现停车场管理系统

时间:2022-10-18 19:43:06

本文实例为大家分享了停车场管理系统的具体代码,供大家参考,具体内容如下

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
#include<iostream>
#include<cstdio>
#include<cstring>
#include<string>
#include<cstdlib>
#include<algorithm>
#include<queue>
#include<vector>
#include<stack>
#include<map>
using namespace std;
struct node
{
 string no;//车牌号
 int time;//车辆进入的时间(以小时为单位)
 int sub;//车辆在停车场的位置
} nod;
map<string,int>mp;//用来检测车辆在停车场或者在便道内
deque<node>q1;//模拟停车场
deque<node>q2;//模拟便道
stack<node>sk;//交换媒介
string str1="park",str2="pavement";
void Push(int n)//车辆驶入操作
{
 cout<<"请输入要进入车辆的车牌号"<<endl;
 string x;
 int y,ans;
 cin>>x;
 cout<<"请输入该车辆进入停车场的时间(时间为整形时刻)"<<endl;
 cin>>y;
 if(!mp[x])//如果此车不在停车场或者便道内执行以下命令
 {
 if(q1.size()<n)//如果停车场未满
 {
  nod.no=x;
  nod.time=y;
  nod.sub=q1.size()+1;
  q1.push_back(nod);
  mp[x]=q1.size();
 }
 else//停车场满了之后进入便道
 {
  nod.no=x;
  nod.time=y;
  nod.sub=q2.size()+1;
  q2.push_back(nod);
  mp[x]=n+q2.size();
 }
 }
 else
 cout<<"错误:该车辆已在停车场内!"<<endl;
}
void Pop(int n)//车辆驶出操作
{
 cout<<"请输入要驶出车辆的车牌号"<<endl;
 string x;
 int y,ans;
 cin>>x;
 cout<<"请输入该车辆驶出停车场的时间(时间为整形时刻)"<<endl;
 cin>>y;
 if(!mp[x])
 cout<<"错误:该辆并不在停车场内!"<<endl;
 else if(mp[x]<=n)//如果该车在停车场内
 {
 mp[x]=0;
 while(q1.back().no!=x)//车出
 {
  q1.back().sub--;
  sk.push(q1.back());
  q1.pop_back();
 }
 ans=y-q1.back().time;
 q1.pop_back();
 while(!sk.empty())
 {
  q1.push_back(sk.top());
  sk.pop();
  mp[q1.back().no]=q1.back().sub;
 }
 if(!q2.empty())//如果便道里也有车,那么进入停车场,并且便道后面的车向前移动
 {
  q2.front().time=y;
  q2.front().sub=q1.size()+1;
  q1.push_back(q2.front());
  q2.pop_front();
  while(!q2.empty())
  {
  q2.back().sub--;
  sk.push(q2.back());
  q2.pop_back();
  }
  while(!sk.empty())
  {
  q2.push_back(sk.top());
  sk.pop();
  mp[q2.back().no]=q1.back().sub;
  }
  mp[q1.back().no]=q1.size();
 }
 cout<<"该车辆一共停了 "<<ans<<" 个小时"<<endl;
 cout<<"所以该车辆需要缴纳 "<<ans*5<<"元"<<endl;
 }
 else if(mp[x]>n)//如果车在便道里,那么直接离开,后面的车向前移动
 {
 mp[x]=0;
 while(q2.back().no!=x)
 {
  q2.back().sub--;
  sk.push(q2.back());
  q2.pop_back();
 }
 q2.pop_back();
 while(!sk.empty())
 {
  q2.push_back(sk.top());
  sk.pop();
 }
 cout<<"由于该车辆并未进入停车场,所以不进行收费"<<endl;
 }
}
void Query1(int n)//查询停车场的停车状态
{
 cout<<"请输入要查询状态的车牌号"<<endl;
 cout<<endl;
 string x;
 cin>>x;
 if(!mp[x])
 cout<<"该车辆并未在停车场"<<endl;
 else if(mp[x]<=n)
 cout<<"该车辆位于停车场"<<mp[x]<<"号位"<<endl;
 else
 cout<<"该车辆位于"<<mp[x]-n<<"号便道"<<endl;
}
void Query2(int n)//查询停车场的空车位
{
 cout<<endl;
 if(q1.size()==n)
 cout<<"停车场已满"<<endl;
 else
 {
 cout<<"停车场的"<<q1.size()+1;
 for(int i=q1.size()+2; i<=n; i++)
  cout<<"、"<<i;
 cout<<"号位车为空"<<endl;
 }
}
int main()
{
 int n;
 cout<<"  **************停车场管理系统**************"<<endl;
 cout<<endl;
 cout<<"停车场管理系统说明:"<<endl;
 cout<<"1.当停车场车位已满之后,车将会停在便道"<<endl;
 cout<<"2.停车场按照每小时五元的标准收费(不足一小时按照一小时计算)"<<endl;
 cout<<"3.停在便道的车辆不收费。"<<endl;
 cout<<endl;
 cout<<"首先请设置停车场的总共的车位数:"<<endl;
 cin>>n;
 cout<<endl;
 cout<<"*********车位设置完毕!下面开始停车场管理系统模拟*********"<<endl;
 cout<<endl;
 cout<<"  *********操作说明*********"<<endl;
 cout<<endl;
 cout<<"车辆驶入登记->请按1 ^_^  车辆驶出登记->请按2 ^_^"<<endl;
 cout<<endl;
 cout<<"查询停车场的停车状态->请按3 ^_^ 查询停车场空闲车位->请按4 ^_^ "<<endl;
 cout<<endl;
 cout<<"退出停车场管理系统->请按0 ^_^"<<endl;
 cout<<endl;
 cout<<"说明完毕!下面开始操作"<<endl;
 cout<<endl;
 while(1)
 {
 cout<<"********请选择操作1~4或者退出按0********"<<endl;
 cout<<endl;
 int t;
 cin>>t;
 if(t==1)
  Push(n);
 else if(t==2)
  Pop(n);
 else if(t==3)
  Query1(n);
 else if(t==4)
  Query2(n);
 else
  break;
 cout<<endl;
 cout<<"***********************biubiu***********************"<<endl;
 cout<<"***********************biubiu***********************"<<endl;
 cout<<endl;
 }
 cout<<"欢迎使用停车场管理系统,期待您的下次使用^_^"<<endl;
}

结果:

C++实现停车场管理系统

C++实现停车场管理系统

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。

原文链接:http://blog.csdn.net/Akatsuki__Itachi/article/details/78850921