-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathArrayList.java
More file actions
313 lines (291 loc) · 7.77 KB
/
ArrayList.java
File metadata and controls
313 lines (291 loc) · 7.77 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
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
import java.util.Arrays;
public class ArrayList<T extends Comparable<T>> implements List<T>{
private T[] array;
private int size = 0;
private boolean isSorted;
/* Default constuctor, initializes the size of array to 2, and makes the list sorted. */
@SuppressWarnings("unchecked")
public ArrayList() {
array = (T[]) new Comparable[2];
isSorted = true;
}
/**
@return -> if successfully added an element into the arraylist.
@param -> the element that needs to be added
*/
@Override
public boolean add(T element) {
if (element == null) {
return false;
}
else {
array = Arrays.copyOf(array, array.length + 1);
array[this.size()] = element;
}
size++;
this.checkSort();
return true;
}
/**
@return -> if successfully added an element to the correct index
@param -> index and element
*/
@Override
public boolean add(int index, T element) {
if ((element == null) || (index < 0 || index > this.size())) {
return false;
}
else {
array = Arrays.copyOf(array, array.length + 1);
for (int i = this.size; i > index; i--) {
if (i > index) {
array[i] = array[i - 1];
}
}
array[index] = element;
size++;
this.checkSort();
return true;
}
}
/**
@return -> VOID
@param -> NOTHING
*/
@SuppressWarnings("unchecked")
@Override
public void clear() {
array = (T[]) new Comparable[2];
size = 0;
isSorted = true;
}
/**
@return -> the element you want to add
@param -> the element you want to get
*/
@Override
public T get(int index) {
if(index < 0 || index >=this.size()){
return null;
}
else{
return array[index];
}
}
/**
@return -> the element you want to find
@param -> the index
*/
@Override
public int indexOf(T element) {
if(element == null){
return -1;
}
for (int i = 0; i < array.length; i++) {
if (array[i] == element) {
return i;
}
}
this.checkSort();
return -1;
}
/**
@return -> a boolean is the list IS empty
@param -> NOTHING
*/
@Override
public boolean isEmpty() {
if(size == 0){
isSorted = true;
return true;
}
return false;
}
/**
@return -> size of list
@param -> NOTHING
*/
@Override
public int size() {
return size;
}
/**
@return -> VOID
@param -> NOTHING
@purpose -> sorting the list with insertion sort
*/
@Override
public void sort() {
for (int i = 1; i < this.size(); ++i) {
T ele = array[i];
int j = i - 1;
while (j >= 0 && array[j].compareTo(ele) > 0) {
array[j + 1] = array[j];
j = j - 1;
}
array[j + 1] = ele;
isSorted = true;
}
}
/**
@return -> the removed element
@param -> index
*/
@Override
public T remove(int index) {
if ((index < 0 || index > this.size()) || array[index] == null) {
this.checkSort();
return null;
}
T out = array[index];
for (int i = index; i < this.size() - 1; i++) {
array[i] = array[i+1];
}
size--;
this.checkSort();
return out;
}
/**
@return -> VOID
@param -> an element
@purpose -> This method is counting the number of occurrences of the given element in an array.
then creating a new array of that size with only the given element.
It then sets the original array to this new array,
*/
@Override
public void equalTo (T element){
int count = 0;
if (element == null) {
return;
}
for (int i = 0; i < this.size(); i++) { /
if (array[i].compareTo(element) == 0) {
count++;
}
}
T[] newArray = (T[]) new Comparable[this.size() - (this.size() - count)];
for (int i = 0; i < newArray.length; i++) {
newArray[i] = element;
}
array = newArray;
size = newArray.length;
this.checkSort();
}
/**
@return -> VOID
@param -> NOTHING
@purpose -> reverses the list
*/
@Override
public void reverse() {
int half = size/2;
int x = 0;
while(x< half){
T temp = array[x];
array[x] = array[size - x - 1];
array[size - x - 1] = temp;
x++;
}
this.checkSort();
}
/**
@return -> VOID
@param -> another ArrayList
@purpose -> merges two arrays together and creates a new list
*/
@SuppressWarnings("unchecked")
@Override
public void merge(List<T> otherList) {
if(otherList == null){
return;
}
ArrayList<T> other = (ArrayList<T>) otherList;
T[] newArray = (T[]) new Comparable[this.size() + other.size()];
this.sort();
other.sort();
isSorted = true;
int i = 0, j= 0, k= 0;
while (i < this.size() && j < other.size()) {
if (array[i].compareTo(other.get(j)) < 0) {
newArray[k++] = array[i++];
}
else {
newArray[k++] = other.get(j++);
}
}
while (i < this.size()) {
newArray[k++] = array[i++];
}
while (j < other.size()) {
newArray[k++] = other.get(j++);
}
array = newArray;
this.checkSort();
size += other.size();
}
/**
@return -> VOID
@param -> NOTHING
@purpose ->swapping every two elements in the array.
*/
@Override
public void pairSwap() {
int i = 0;
int j = 1;
while(i < this.size() && j < this.size()){
T temp = array[i];
T first = array[j];
T second = temp;
array[i] = first;
array[j] = second;
i+=2;
j+=2;
}
}
/**
@return -> (boolean) if the list is sorted, and updates the global variable 'isSorted' accordingly.
@param -> NOTHING
@purpose -> a helper function for checking if the list IS sorted
*/
@Override
public boolean checkSort() {
if (this.size() == 1 || this.size() == 0) {
isSorted = true;
return true;
}
int i = 0;
while (i < this.size() - 1) {
if (array[i].compareTo(array[i + 1]) > 0) {
isSorted = false;
return false;
}
i++;
}
isSorted = true;
return true;
}
/**
@return -> (boolean) if the list is sorted
@param -> NOTHING
@purpose -> calls the global variable 'isSorted' accordingly.
*/
@Override
public boolean isSorted() {
return isSorted;
}
/**
@return -> a string representation of the array
@param -> NOTHING
@purpose -> to display the array
*/
@Override
public String toString(){
String out = "";
int i = 0;
while (i < this.size()){
out += array[i] + "\n";
i++;
}
return out; }
}
}