-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathoops17.cpp
More file actions
212 lines (170 loc) · 3.42 KB
/
oops17.cpp
File metadata and controls
212 lines (170 loc) · 3.42 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
// C++ program for the above approach
#include <bits/stdc++.h>
#define max 20
using namespace std;
// Structure of Employee
struct employee {
string name;
long int code;
string designation;
int exp;
int age;
};
int num;
void showMenu();
// Array of Employees to store the
// data in the form of the Structure
// of the Array
employee emp[max], tempemp[max],
sortemp[max], sortemp1[max];
// Function to build the given datatype
void build()
{
cout << "Build The Table\n";
cout << "Maximum Enteries can be "
<< max << "\n";
cout << "Enter the number of "
<< "Enteries required";
cin >> num;
if (num > 20) {
cout << "Maximum number of "
<< "Enteries are 20\n";
num = 20;
}
cout << "Enter the following data:\n";
for (int i = 0; i < num; i++) {
cout << "Name ";
cin >> emp[i].name;
cout << "Employee ID ";
cin >> emp[i].code;
cout << "Designation ";
cin >> emp[i].designation;
cout << "Experience ";
cin >> emp[i].exp;
cout << "Age ";
cin >> emp[i].age;
}
showMenu();
}
// Function to insert the data into
// given data type
void insert()
{
if (num < max) {
int i = num;
num++;
cout << "Enter the information "
<< "of the Employee\n";
cout << "Name ";
cin >> emp[i].name;
cout << "Employee ID ";
cin >> emp[i].code;
cout << "Designation ";
cin >> emp[i].designation;
cout << "Experience ";
cin >> emp[i].exp;
cout << "Age ";
cin >> emp[i].age;
}
else {
cout << "Employee Table Full\n";
}
showMenu();
}
// Function to delete record at index i
void deleteIndex(int i)
{
for (int j = i; j < num - 1; j++) {
emp[j].name = emp[j + 1].name;
emp[j].code = emp[j + 1].code;
emp[j].designation
= emp[j + 1].designation;
emp[j].exp = emp[j + 1].exp;
emp[j].age = emp[j + 1].age;
}
return;
}
// Function to delete record
void deleteRecord()
{
cout << "Enter the Employee ID "
<< "to Delete Record";
int code;
cin >> code;
for (int i = 0; i < num; i++) {
if (emp[i].code == code) {
deleteIndex(i);
num--;
break;
}
}
showMenu();
}
void searchRecord()
{
cout << "Enter the Employee"
<< " ID to Search Record";
int code;
cin >> code;
for (int i = 0; i < num; i++) {
// If the data is found
if (emp[i].code == code) {
cout << "Name "
<< emp[i].name << "\n";
cout << "Employee ID "
<< emp[i].code << "\n";
cout << "Designation "
<< emp[i].designation << "\n";
cout << "Experience "
<< emp[i].exp << "\n";
cout << "Age "
<< emp[i].age << "\n";
break;
}
}
showMenu();
}
// Function to show menu
void showMenu()
{
cout << "-------------------------"
<< " Management System"
<< "-------------------------\n\n";
cout << "Availiable Options:\n\n";
cout << "Build Table (1)\n";
cout << "Insert New Entry (2)\n";
cout << "Delete Entry (3)\n";
cout << "Search a Record (4)\n";
cout << "Exit (5)\n";
int option;
// Input Options
cin >> option;
// Call function on the bases of the
// above option
if (option == 1) {
build();
}
else if (option == 2) {
insert();
}
else if (option == 3) {
deleteRecord();
}
else if (option == 4) {
searchRecord();
}
else if (option == 5) {
return;
}
else {
cout << "Expected Options"
<< " are 1/2/3/4/5";
showMenu();
}
}
// Driver Code
int main()
{
showMenu();
return 0;
}