-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathA26dynamicstringarray.cpp
225 lines (208 loc) · 6.13 KB
/
A26dynamicstringarray.cpp
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
// Dynamic String Array
// By Emily Dayanghirang and Alina Corpora
#include <iostream>
using namespace std;
// Function Prototypes
void printMenu();
void printList(string *p, int size);
string *expand(string *p, int &size);
bool insertAtZero(string *p, string item, int count);
bool insertAt(string *p, string item, int index, int count);
bool insertAtEnd(string *p, string item, int count);
bool removeFromEnd(string *p, int count);
bool removeFrom(string *p, int index, int count);
void sort(string *p, int count);
int main()
{
int size = 5,
input = 0,
index = 0,
count = size;
string *ptr = nullptr,
item = "";
// Initialize dynamic array
ptr = new string[size]{"Mary", "Kate",
"Ashley",
"Ken",
"Mark"};
// Loops until user chooses to exit the program
do
{
printMenu();
cin >> input;
switch(input)
{
case 1:
cout << "The name you want to "
<< "insert at the end of the list: ";
cin >> item;
if(count == size)
ptr = expand(ptr, size);
if(insertAtEnd(ptr, item, count))
{
cout << "\nThe new list:\n";
printList(ptr, size);
count++;
}
break;
case 2:
cout << "The name you want to "
<< "insert at the beginning of the list: ";
cin >> item;
if(count == size)
ptr = expand(ptr, size);
if(insertAtZero(ptr, item, count))
{
cout << "\nThe new list:\n";
printList(ptr, size);
count++;
}
break;
case 3:
cout << "The index position in the list you want to "
<< "insert a name: ";
cin >> index;
cout << "The name you want to "
<< "insert at index " << index << ": ";
cin >> item;
if(count == size)
ptr = expand(ptr, size);
if(insertAt(ptr, item, index, count))
{
cout << "\nThe new list:\n";
printList(ptr, size);
count++;
}
break;
case 4:
if (removeFromEnd(ptr, count))
{
cout << "\nThe new list:\n";
printList(ptr, size);
count++;
}
break;
case 5:
cout << "The index position in the list you want to "
<< "delete a name: ";
cin >> index;
if(count == size)
ptr = expand(ptr, size);
if(removeFrom(ptr, index, count))
{
cout << "\nThe new list:\n";
printList(ptr, size);
count++;
}
break;
case 6:
cout<<"Now sorting the list..."<<endl;
sort(ptr, count);
cout << "\nThe new list:\n";
printList(ptr, size);
break;
case 7:
cout << "\nThe list:\n";
printList(ptr, size);
break;
case 8:
cout << "\nGoodbye!\n";
break;
default:
cout << "\nThe valid choices are 1 through 8.\n"
<< "Please enter again.\n";
}
}while(input != 8);
return 0;
}
void printMenu()
{
cout << "\nPlease choose from the following menu choices\n"
<< "1) Insert a new element to the end of the list.\n"
<< "2) Insert a new element at the beginning of the list.\n"
<< "3) Insert an element into the list at a given index.\n"
<< "4) Remove an element from the end of the list.\n"
<< "5) Remove an element from the list at a given index.\n"
<< "6) Sort the list.\n"
<< "7) Print the contents of the list.\n"
<< "8) Exit.\n\n"
<< "Enter: ";
}
string *expand(string *p, int &size)
{
int newSize = size * 2;
string *newArr = nullptr;
newArr = new string[newSize];
for(int index = 0; index < size; index++)
{
// Copy the old array to the new array
*(newArr + index) = *(p + index);
}
// Set the rest of the array elements to empty strings
for(int index = size; index < newSize; index++)
{
*(newArr + index) = "";
}
size = newSize;
delete [] p;
return newArr;
}
bool insertAtZero(string *p, string item, int count)
{
return insertAt(p, item, 0, count);
}
// Credits to Umair Azmi for the function for insertAt
bool insertAt(string *p, string item, int index, int count)
{
if(index < 0 || index > count)
return false;
// Move contents
for(int i = count; i > index; i--)
{
*(p+i) = *(p+i-1);
}
// Insert item into the list
*(p+index) = item;
return true;
}
bool insertAtEnd(string *p, string item, int count)
{
return insertAt(p, item, count, count);
}
void printList(string *p, int size)
{
for (int index = 0; index < size; index++)
cout << *(p + index) << " ";
cout << endl;
}
bool removeFrom(string *p, int index, int count)
{
if(index < 0 || index >= count)
return false;
// Shift to left
for(int i = index; i < count - 1; i++)
*(p+i) = *(p+i+1);
*(p+count-1)="";
return true;
}
bool removeFromEnd(string *p, int count)
{
return removeFrom(p, count - 1, count);
}
void sort(string *p, int count)
{
string temp;
int i, j;
for(i = 0; i < count; i++)
{
for(j = i + 1; j < count; j++)
{
if((p+i)->compare(*(p+j)) > 0)
{
temp = *(p+i);
*(p+i) = *(p+j);
*(p+j) = temp;
}
}
}
}