-
Notifications
You must be signed in to change notification settings - Fork 66
/
Copy pathCustomVector.java
292 lines (263 loc) · 5.54 KB
/
CustomVector.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
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
/**
* Data-Structures-In-Java
* CustomVector.java
*/
package com.deepak.data.structures.Vector;
import java.util.Arrays;
import java.util.Enumeration;
import java.util.NoSuchElementException;
/**
* Implementation of Vector
*
* @author Deepak
*/
public class CustomVector<T> {
/* Array to hold elements */
private Object[] elements;
/* Size of vector */
private int size;
/* Variable for capacity increment when array gets full */
private int capacityIncrement;
/* Default capacity */
private final static int DEFAULT_CAPACITY = 10;
/**
* Constructor
*/
public CustomVector() {
this(DEFAULT_CAPACITY);
}
/**
* Constructor
*
* @param capacity
*/
public CustomVector(int capacity) {
this(capacity, 0);
}
/**
* Constructor
*
* @param capacity
* @param capacityIncrement
*/
public CustomVector(int capacity, int capacityIncrement) {
if (capacity < 0) {
throw new IllegalArgumentException("Illegal Capacity: " + capacity);
}
this.elements = new Object[capacity];
this.capacityIncrement = capacityIncrement;
}
/**
* Method to return current capacity of vector
*
* @return {@link int}
*/
public synchronized int capacity() {
return elements.length;
}
/**
* Method to return current size of vector
*
* @return {@link int}
*/
public synchronized int size() {
return size;
}
/**
* Method to check if vector is empty
*
* @return {@link int}
*/
public synchronized boolean isEmpty() {
return size() == 0;
}
/**
* Method to return enumeration of elements
*
* @return {@link Enumeration}
*/
public Enumeration<T> elements() {
return new Enumeration<T>() {
int count = 0;
public boolean hasMoreElements() {
return count < size;
}
public T nextElement() {
synchronized (CustomVector.this) {
if (count < size) {
return elementData(count++);
}
}
throw new NoSuchElementException("Vector Enumeration");
}
};
}
/**
* Method to check if vector contains the object
*
* @param o
* @return {@link boolean}
*/
public synchronized boolean contains(Object o) {
return indexOf(o) >= 0;
}
/**
* Method to check the index of a given object
*
* @param o
* @return {@link int}
*/
public synchronized int indexOf(Object o) {
return indexOf(o, 0);
}
/**
* Method to find the index of a given object
*
* @param o
* @param index
* @return {@link int}
*/
private synchronized int indexOf(Object o, int index) {
/* If object is null, return the first index of null value */
if (o == null) {
for (int i = 0; i < size; i++) {
if (elements[i] == null) {
return i;
}
}
} else {
for (int i = 0; i < size; i++) {
if (o.equals(elements[i])) {
return i;
}
}
}
return -1;
}
/**
* Method to find element at given index
*
* @param index
* @return {@link T}
*/
public synchronized T elementAt(int index) {
if (index >= size) {
throw new ArrayIndexOutOfBoundsException(index + " >= " + size);
}
return elementData(index);
}
/**
* Method to find the first element
*
* @return {@link T}
*/
public synchronized T firstElement() {
if (size == 0) {
throw new NoSuchElementException();
}
return elementData(0);
}
/**
* Method to find the last element
*
* @return {@link T}
*/
public synchronized T lastElement() {
if (size == 0) {
throw new NoSuchElementException();
}
return elementData(size - 1);
}
/**
* Method to set the element at a given index
*
* @param object
* @param index
*/
public synchronized void setElementAt(T object, int index) {
if (index >= size) {
throw new ArrayIndexOutOfBoundsException(index + " >= " + size);
}
elements[index] = object;
}
/**
* Method to remove the element at a given index
*
* @param index
*/
public synchronized void removeElementAt(int index) {
if (index >= size) {
throw new ArrayIndexOutOfBoundsException(index + " >= " + size);
} else if (index < 0) {
throw new ArrayIndexOutOfBoundsException(index);
}
int j = size - index - 1;
if (j > 0) {
System.arraycopy(elements, index + 1, elements, index, j);
}
size--;
elements[size] = null;
}
/**
* Method to insert element at a given index
*
* @param element
* @param index
*/
public synchronized void insertElementAt(T element, int index) {
if (index >= size) {
throw new ArrayIndexOutOfBoundsException(index + " >= " +
size);
}
ensureCapacity(size + 1);
System.arraycopy(elements, index, elements, index + 1, size - index);
elements[index] = element;
size++;
}
/**
* Method to add element to vector
*
* @param element
*/
public synchronized void addElement(T element) {
ensureCapacity(size + 1);
elements[size++] = element;
}
/**
* Method to get a element at given index
*
* @param index
* @return {@link T}
*/
public synchronized T get(int index) {
if (index >= size) {
throw new ArrayIndexOutOfBoundsException(index);
}
return elementData(index);
}
/**
* Method to ensure capacity
*
* @param newSize
*/
private void ensureCapacity(int newSize) {
if (newSize >= capacity()) {
/* If capacity increment is given, use that else double the size */
if (capacityIncrement > 0) {
elements = Arrays.copyOf(elements, capacity() + capacityIncrement);
} else {
elements = Arrays.copyOf(elements, size * 2);
}
}
}
/**
* Method to return a type casted value at given index
*
* @param index
* @return {@link T}
*/
@SuppressWarnings("unchecked")
T elementData(int index) {
return (T) elements[index];
}
}