00001 package ca.mcgill.sable.util;
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00060
00061
00062
00063
00064
00065
00066
00067
00068
00069
00070
00071
00072
00073
00074
00075
00076
00077
00078
00079
00080
00081
00082
00083
00084
00085
00086 public class ArrayList extends AbstractList
00087 {
00088 private static final int DEFAULT_SIZE = 8;
00089
00090 private int numElements;
00091 private int maxElements;
00092 private Object[] elements;
00093
00094 private class ArrayIterator implements Iterator
00095 {
00096 int nextIndex;
00097
00098 ArrayIterator()
00099 {
00100 nextIndex = 0;
00101 }
00102
00103 public boolean hasNext()
00104 {
00105 return nextIndex < numElements;
00106 }
00107
00108 public Object next() throws NoSuchElementException
00109 {
00110 if(!(nextIndex < numElements))
00111 throw new NoSuchElementException();
00112
00113 return elements[nextIndex++];
00114 }
00115
00116 public void remove() throws NoSuchElementException
00117 {
00118 if(nextIndex == 0)
00119 throw new NoSuchElementException();
00120 else
00121 {
00122 ArrayList.this.remove(nextIndex - 1);
00123 nextIndex = nextIndex - 1;
00124 }
00125 }
00126 }
00127
00128 public ArrayList()
00129 {
00130 maxElements = DEFAULT_SIZE;
00131 elements = new Object[DEFAULT_SIZE];
00132 numElements = 0;
00133 }
00134 public void add(int index, Object e)
00135 {
00136
00137 if(numElements == maxElements)
00138 doubleCapacity();
00139
00140
00141 if(index == numElements)
00142 {
00143 elements[numElements++] = e;
00144 return;
00145 }
00146
00147
00148 System.arraycopy(elements, index, elements, index + 1, numElements - index);
00149 elements[index] = e;
00150 numElements++;
00151 }
00152 public boolean add(Object e)
00153 {
00154
00155 if(numElements == maxElements)
00156 doubleCapacity();
00157
00158
00159 elements[numElements++] = e;
00160 return true;
00161 }
00162 public void clear()
00163 {
00164 numElements = 0;
00165 }
00166 public boolean contains(Object obj)
00167 {
00168 for(int i = 0; i < numElements; i++)
00169 if(elements[i].equals(obj))
00170 return true;
00171
00172 return false;
00173 }
00174 private void doubleCapacity()
00175 {
00176 int newSize = maxElements * 2;
00177
00178 Object[] newElements = new Object[newSize];
00179
00180 System.arraycopy(elements, 0, newElements, 0, numElements);
00181 elements = newElements;
00182 maxElements = newSize;
00183 }
00184 public Object get(int index)
00185 {
00186 return elements[index];
00187 }
00188 public Iterator iterator()
00189 {
00190 return new ArrayIterator();
00191 }
00192 public Object remove(int index)
00193 {
00194 Object toReturn = get(index);
00195 removeElementAt(index);
00196
00197 return toReturn;
00198 }
00199 private void removeElementAt(int index)
00200 {
00201
00202 if(index == numElements - 1)
00203 {
00204 numElements--;
00205 return;
00206 }
00207
00208
00209 System.arraycopy(elements, index + 1, elements, index, numElements - (index + 1));
00210 numElements--;
00211 }
00212 public Object set(int index, Object e)
00213 {
00214 elements[index] = e;
00215 return null;
00216 }
00217 public int size()
00218 {
00219 return numElements;
00220 }
00221 public Object[] toArray()
00222 {
00223 Object[] array = new Object[numElements];
00224
00225 System.arraycopy(elements, 0, array, 0, numElements);
00226 return array;
00227 }
00228 public void toArray(Object[] array)
00229 {
00230 System.arraycopy(elements, 0, array, 0, numElements);
00231 }
00232 }