-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathMyArrayList.java
214 lines (179 loc) · 5.04 KB
/
MyArrayList.java
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
package chapter_twenty_four.samples;
/**
* Listing 24.2 MyArrayList.java
* */
public class MyArrayList<E> implements MyList<E>
{
public static final int INITIAL_CAPACITY = 16;
private E[] data = (E[]) new Object[INITIAL_CAPACITY];
private int size = 0; // Number of elements in the list
/**
* Create an empty list
*/
public MyArrayList() { }
/**
* Create a list from an array of objects
*/
public MyArrayList(E[] objects)
{
for (int i = 0; i < objects.length; i++)
add(objects[i]); // Warning: don't use super(objects)!
}
/** Add a new element at the specified index */
@Override
public void add(int index, E e)
{
// Ensure the index is in the right range
if (index < 0 || index > size)
throw new IndexOutOfBoundsException
("Index: " + index + ", Size: " + size);
ensureCapacity();
// Move the elements to the right after the specified index
for (int i = size - 1; i >= index; i--)
data[i + 1] = data[i];
// Insert new element to data[index]
data[index] = e;
// Increase size by 1
size++;
}
/**
* Create a new larger array, double the current size + 1
*/
private void ensureCapacity()
{
if (size >= data.length)
{
E[] newData = (E[]) (new Object[size * 2 + 1]);
System.arraycopy(data, 0, newData, 0, size);
data = newData;
}
}
/** Clear the list */
@Override
public void clear()
{
data = (E[]) new Object[INITIAL_CAPACITY];
size = 0;
}
/** Return true if this list contains the element */
@Override
public boolean contains(Object e) {
for (int i = 0; i < size; i++)
if (e.equals(data[i])) return true;
return false;
}
/** Return the element at the specified index */
@Override
public E get(int index)
{
checkIndex(index);
return data[index];
}
private void checkIndex(int index)
{
if (index < 0 || index >= size)
throw new IndexOutOfBoundsException
("Index: " + index + ", Size: " + size);
}
/** Return the index of the first matching element
* in this list. Return −1 if no match. */
@Override
public int indexOf(Object e)
{
for (int i = 0; i < size; i++)
if (e.equals(data[i])) return i;
return -1;
}
/** Return the index of the last matching element
* in this list. Return −1 if no match. */
@Override
public int lastIndexOf(E e)
{
for (int i = size - 1; i >= 0; i--)
if (e.equals(data[i])) return i;
return -1;
}
/** Remove the element at the specified position
* in this list. Shift any subsequent elements to the left.
* Return the element that was removed from the list. */
@Override
public E remove(int index)
{
checkIndex(index);
E e = data[index];
// Shift data to the left
for (int j = index; j < size - 1; j++)
data[j] = data[j + 1];
data[size - 1] = null; // This element is now null
// Decrement size
size--;
return e;
}
/** Replace the element at the specified position
* in this list with the specified element. */
@Override
public E set(int index, E e)
{
checkIndex(index);
E old = data[index];
data[index] = e;
return old;
}
@Override
public String toString()
{
StringBuilder result = new StringBuilder("[");
for (int i = 0; i < size; i++)
{
result.append(data[i]);
if (i < size - 1) result.append(", ");
}
return result.toString() + "]";
}
/**
* Trims the capacity to current size
*/
public void trimToSize()
{
if (size != data.length)
{
E[] newData = (E[]) (new Object[size]);
System.arraycopy(data, 0, newData, 0, size);
data = newData;
} // If size == capacity, no need to trim
}
/** Override iterator() defined in Iterable */
@Override
public java.util.Iterator<E> iterator()
{
return new ArrayListIterator();
}
private class ArrayListIterator
implements java.util.Iterator<E>
{
private int current = 0; // Current index
@Override
public boolean hasNext()
{
return current < size;
}
@Override
public E next()
{
return data[current++];
}
@Override // Remove the element returned by the last next()
public void remove()
{
if (current == 0) // next() has not been called yet
throw new IllegalStateException();
MyArrayList.this.remove(--current);
}
}
/** Return the number of elements in this list */
@Override
public int size()
{
return size;
}
}