-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanager.cpp
More file actions
225 lines (204 loc) · 4.02 KB
/
manager.cpp
File metadata and controls
225 lines (204 loc) · 4.02 KB
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
#include <iostream>
#include <string>
#define M 100
using namespace std;
struct Info
{
string name;
int age;
int sex;
string phone;
string address;
};
struct InfoList
{
struct Info sumInfo[M];
int size;
};
int isExist(struct InfoList* p, string name);
void showmenu()
{
cout << "*************************" << endl;
cout << "**** 1、添加人物信息 ****" << endl;
cout << "**** 2、显示人物信息 ****" << endl;
cout << "**** 3、查询人物信息 ****" << endl;
cout << "**** 4、修改人物信息 ****" << endl;
cout << "**** 5、删除人物信息 ****" << endl;
cout << "**** 6、清空人物信息 ****" << endl;
cout << "**** 0、退出系统 ****" << endl;
cout << "*************************" << endl;
cout << "请选择您的操作" << endl;
}
void add(struct InfoList* p)
{
cout << "请输入姓名" << endl;
string name;
cin >> name;
p->sumInfo[p->size].name = name;
cout << "请输入年龄" << endl;
int age;
cin >> age;
p->sumInfo[p->size].age = age;
cout << "请输入性别:1--男,2--女" << endl;
int sex;
cin >> sex;
p->sumInfo[p->size].sex = sex;
string phone;
cout << "请输入电话" << endl;
cin >> phone;
p->sumInfo[p->size].phone = phone;
string address;
cout << "请输入地址" << endl;
cin >> address;
p->sumInfo[p->size].address = address;
(p->size)++;
cout << "添加成功" << endl;
system("pause");
system("cls");
}
void show(const struct InfoList* p)
{
if (p->size == 0)
{
cout << "没有人物信息" << endl;
}
else
{
for (int i = 0; i < p->size; i++)
{
cout << "姓名:" << p->sumInfo[i].name << "\t";
cout << "年龄:" << p->sumInfo[i].age << "\t";
cout << "性别:" << ((p->sumInfo[i].sex == 1) ? "男" : "女") << "\t";
cout << "号码:" << p->sumInfo[i].phone << "\t";
cout << "地址:" << p->sumInfo[i].address << endl;
}
}
system("pause");
system("cls");
}
void research(struct InfoList* p)
{
cout << "请输入您要搜索的人物姓名:" << endl;
string name;
cin >> name;
int x;
x = isExist(p, name);
if (x != -1)
{
cout << "姓名:" << p->sumInfo[x].name << "\t";
cout << "年龄:" << p->sumInfo[x].age << "\t";
cout << "性别:" << ((p->sumInfo[x].sex == 1) ? "男" : "女") << "\t";
cout << "号码:" << p->sumInfo[x].phone << "\t";
cout << "地址:" << p->sumInfo[x].address << endl;
}
else
{
cout << "查无此人" << endl;
}
system("pause");
system("cls");
}
void alter(struct InfoList* p)
{
cout << "请输入要修改的人名" << endl;
string name;
cin >> name;
int x = isExist(p, name);
if (x != -1)
{
cout << "请输入姓名" << endl;
string name;
cin >> name;
p->sumInfo[x].name = name;
cout << "请输入年龄" << endl;
int age;
cin >> age;
p->sumInfo[x].age = age;
cout << "请输入性别:1--男,2--女" << endl;
int sex;
cin >> sex;
p->sumInfo[x].sex = sex;
string phone;
cout << "请输入电话" << endl;
cin >> phone;
p->sumInfo[x].phone = phone;
string address;
cout << "请输入地址" << endl;
cin >> address;
p->sumInfo[x].address = address;
cout << "修改完成" << endl;
}
else
{
cout << "查无此人,请重新输入:" << endl;
}
system("pause");
system("cls");
}
void delet(struct InfoList* p)
{
cout << "请输入你需要删除的人的姓名:" << endl;
string name;
cin >> name;
int x = isExist(p, name);
if (x != -1)
{
for (int i = x; i < p->size - 1; i++)
{
p->sumInfo[x] = p->sumInfo[x + 1];
}
(p->size)--;
}
else
{
cout << "查无此人" << endl;
}
system("pause");
system("cls");
}
int isExist(struct InfoList* p, string name)
{
for (int i = 0; i < p->size; i++)
{
if ((p->sumInfo[i].name) == name)
return i;
}
return -1;
}
int main()
{
struct InfoList presonal;
presonal.size = 0;
int select(0);
while (true)
{
showmenu();
cin >> select;
switch (select)
{
case 1:add(&presonal);
break;
case 2:show(&presonal);
break;
case 3:research(&presonal);
break;
case 4:alter(&presonal);
break;
case 5:delet(&presonal);
break;
case 6:presonal.size = 0;
cout << "信息已清空" << endl;
system("pause");
system("cls");
break;
case 0:
cout << "感谢您的使用" << endl;
system("pause");
return 0;
break;
default:
break;
}
}
return 0;
}