-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntegerListImpl.java
More file actions
222 lines (198 loc) · 5.23 KB
/
IntegerListImpl.java
File metadata and controls
222 lines (198 loc) · 5.23 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
package org.example;
import java.util.Arrays;
public class IntegerListImpl implements IntegerList {
private final Integer[] array;
private final int size;
public IntegerListImpl(int size) {
this.size = size;
this.array = new Integer[size];
}
@Override
public Integer add(Integer item) {
if (array[size - 1] != null) {
throw new IndexOutOfBoundsException();
}
if (item == null) {
throw new IllegalArgumentException();
}
for (int i = 0; i < size; i++) {
if (array[i] == null) {
array[i] = item;
return item;
}
}
return null;
}
@Override
public Integer add(int index, Integer item) {
if (index >= size - 1 || index < 0 || array[size - 1] != null) {
throw new IndexOutOfBoundsException();
}
if (item == null) {
throw new IllegalArgumentException();
}
for (int i = size - 1; i >= index; i--) {
if (array[i] != null) {
array[i + 1] = array[i];
}
}
array[index] = item;
return item;
}
@Override
public Integer set(int index, Integer item) {
if (index >= size || index < 0) {
throw new IndexOutOfBoundsException();
}
if (item == null) {
throw new IllegalArgumentException();
}
array[index] = item;
return item;
}
@Override
public Integer remove(Integer item) {
if (item == null) {
throw new IllegalArgumentException();
}
for (int i = 0; i < array.length; i++) {
if (array[i] != null && array[i].equals(item)) {
return remove(i);
}
}
throw new IllegalArgumentException();
}
@Override
public Integer remove(int index) {
if (index >= size || index < 0) {
throw new IndexOutOfBoundsException();
}
Integer ret = array[index];
if (ret == null) {
throw new IllegalArgumentException();
}
for (int i = size - 1; i >= index; i--) {
if (i == size - 1) {
array[i] = null;
} else {
array[i] = array[i + 1];
}
}
return ret;
}
@Override
public boolean contains(Integer item) {
if (item == null) {
throw new IllegalArgumentException();
}
sort();
return containsBinary(item);
}
@Override
public int indexOf(Integer item) {
if (item == null) {
throw new IllegalArgumentException();
}
for (int i = 0; i < size; i++) {
if (array[i] != null && array[i].equals(item)) {
return i;
}
}
return -1;
}
@Override
public int lastIndexOf(Integer item) {
if (item == null) {
throw new IllegalArgumentException();
}
for (int i = size - 1; i >= 0; i--) {
if (array[i] != null && array[i].equals(item)) {
return i;
}
}
return -1;
}
@Override
public Integer get(int index) {
if (index >= size || index < 0) {
throw new IndexOutOfBoundsException();
}
return array[index];
}
@Override
public boolean equals(IntegerList otherList) {
if (otherList == null) {
throw new IllegalArgumentException();
}
if (size() == otherList.size()) {
for (int i = 0; i <= size() - 1; i++) {
if (!array[i].equals(otherList.get(i))) {
return false;
}
}
return true;
}
return false;
}
@Override
public int size() {
int i = size - 1;
while (i >= 0) {
if (array[i] != null) {
return i + 1;
}
i--;
}
return 0;
}
@Override
public boolean isEmpty() {
int i = 0;
while (i < size) {
if (array[i] != null) {
return false;
}
i++;
}
return true;
}
@Override
public void clear() {
Arrays.fill(array, null);
}
@Override
public Integer[] toArray() {
Integer[] newArr = new Integer[size()];
for (int i = 0; i <= size() - 1; i++) {
newArr[i] = array[i];
}
return newArr;
}
public void sort() {
for (int i = 1; i < size(); i++) {
Integer temp = array[i];
int j = i;
while (j > 0 && array[j - 1] >= temp) {
array[j] = array[j - 1];
j--;
}
array[j] = temp;
}
}
private boolean containsBinary(int element) {
int min = 0;
int max = size() - 1;
while (min <= max) {
int mid = (min + max) / 2;
if (element == array[mid]) {
return true;
}
if (element < array[mid]) {
max = mid - 1;
} else {
min = mid + 1;
}
}
return false;
}
}