structure
Class Vector

java.lang.Object
  extended by structure.AbstractStructure
      extended by structure.AbstractList
          extended by structure.Vector
All Implemented Interfaces:
java.lang.Cloneable, List, Structure

public class Vector
extends AbstractList
implements java.lang.Cloneable

An implemention of extensible arrays, similar to that of java.util.Vector. This vector class implements a basic extensible array. It does not implement any of the additional features of the Sun class, including list-like operations. Those operations are available in other implementors of List in this package.

Example usage: To put a program's parameters into a Vector, we would use the following:

 public static void main(String[] arguments)
 {
    Vector argVec = new Vector();
    for (int i = 0; i < arguments.length; i++)
    {
       argVec.add(arguments[i]);
    }
    System.out.println(argVec);
 }
 

Since:
JavaStructures 1.0

Field Summary
protected  int capacityIncrement
          The size of size increment, should the vector become full.
protected static int defaultCapacity
          The default size of the vector; may be overridden in the Vector(int) constructor.
protected  int elementCount
          The actual number of elements logically stored within the vector.
protected  java.lang.Object[] elementData
          The data associated with the vector.
protected  java.lang.Object initialValue
          The initial value of any new elements that are appended to the vector.
 
Constructor Summary
Vector()
          Construct an empty vector.
Vector(java.util.Collection c)
           
Vector(int initialCapacity)
          Construct an empty vector capable of storing initialCapacity values before the vector must be extended.
Vector(int initialCapacity, int capacityIncr)
          Construct a vector with initial capacity, and growth characteristic.
Vector(int initialCapacity, int capacityIncr, java.lang.Object initValue)
          Construct a vector with initial size, growth rate and default value.
Vector(Vector that)
           
 
Method Summary
 void add(int index, java.lang.Object obj)
          Insert an element at a particular location.
 void add(java.lang.Object obj)
          Add an element to the high end of the array, possibly expanding vector.
 void addElement(java.lang.Object o)
          Add an element to the high end of the array, possibly expanding vector.
 int capacity()
          Determine the capacity of the vector.
 void clear()
          Remove all the values of the vector.
 java.lang.Object clone()
          Construct a shallow copy of the vector.
 boolean contains(java.lang.Object elem)
          Determine if a value appears in a vector.
 void copyInto(java.lang.Object[] dest)
          Copy the contents of the vector into an array.
 java.lang.Object elementAt(int index)
          Fetch the element at a particular index.
 void ensureCapacity(int minCapacity)
          Ensure that the vector is capable of holding at least minCapacity values without expansion.
 java.lang.Object firstElement()
          Get access to the first element of the vector.
 java.lang.Object get(int index)
          Fetch the element at a particular index.
 int indexOf(java.lang.Object elem)
          Assuming the data is not in order, find the index of a value, or return -1 if not found.
 int indexOf(java.lang.Object elem, int index)
          Assuming the data is not in order, find the index of a value or return -1 if the value is not found.
 void insertElementAt(java.lang.Object obj, int index)
          Insert an element at a particular location.
 boolean isEmpty()
          Determine if the Vector contains no values.
 java.util.Iterator iterator()
          Construct a iterator over the elements of the vector.
 java.lang.Object lastElement()
          Fetch a reference to the last value in the vector.
 int lastIndexOf(java.lang.Object obj)
          Search for the last occurrence of a value within the vector.
 int lastIndexOf(java.lang.Object obj, int index)
          Find the index of the last occurrence of the value in the vector before the indexth position.
 java.lang.Object remove(int where)
          Remove an element at a particular location.
 java.lang.Object remove(java.lang.Object element)
          Remove an element, by value, from vector.
 void removeAllElements()
          Remove all the elements of the vector.
 void removeElementAt(int where)
          Remove an element at a particular location.
 java.lang.Object set(int index, java.lang.Object obj)
          Change the value stored at location index.
 void setElementAt(java.lang.Object obj, int index)
          Change the value stored at location index.
 void setSize(int newSize)
          Explicitly set the size of the array.
 int size()
          Determine the number of elements in the vector.
 java.lang.String toString()
          Determine a string representation for the vector.
 void trimToSize()
          Trim the vector to exactly the correct size.
 
Methods inherited from class structure.AbstractList
addFirst, addLast, get, getFirst, getLast, remove, removeFirst, removeLast
 
Methods inherited from class structure.AbstractStructure
elements, hashCode, values
 
Methods inherited from class java.lang.Object
equals, finalize, getClass, notify, notifyAll, wait, wait, wait
 
Methods inherited from interface structure.Structure
elements, values
 

Field Detail

elementData

protected java.lang.Object[] elementData
The data associated with the vector. The size of the array is always at least as large as the vector. The array is only extended when necessary.


elementCount

protected int elementCount
The actual number of elements logically stored within the vector. May be smaller than the actual length of the array.


capacityIncrement

protected int capacityIncrement
The size of size increment, should the vector become full. 0 indicates the vector should be doubled when capacity of the array is reached.


initialValue

protected java.lang.Object initialValue
The initial value of any new elements that are appended to the vector. Normally null. Be aware that references used in this way will result in multiple references to a single object.


defaultCapacity

protected static final int defaultCapacity
The default size of the vector; may be overridden in the Vector(int) constructor.

See Also:
Constant Field Values
Constructor Detail

Vector

public Vector()
Construct an empty vector.

Postcondition:
constructs a vector with capacity for 10 elements

Vector

public Vector(int initialCapacity)
Construct an empty vector capable of storing initialCapacity values before the vector must be extended.

Parameters:
initialCapacity - The size of vector before reallocation is necessary
Precondition:
initialCapacity >= 0
Postcondition:
constructs an empty vector with initialCapacity capacity

Vector

public Vector(int initialCapacity,
              int capacityIncr)
Construct a vector with initial capacity, and growth characteristic.

Parameters:
initialCapacity - The initial number of slots in vector.
capacityIncr - The size of growth of vector.
See Also:
capacityIncrement
Precondition:
initialCapacity >= 0, capacityIncr >= 0
Postcondition:
constructs an empty vector with initialCapacity capacity that extends capacity by capacityIncr, or doubles if 0

Vector

public Vector(int initialCapacity,
              int capacityIncr,
              java.lang.Object initValue)
Construct a vector with initial size, growth rate and default value.

Parameters:
initialCapacity - The initial number of slots in vector.
capacityIncr - The size of the increment when vector grows.
initValue - The initial value stored in vector elements.
Precondition:
initialCapacity, capacityIncr >= 0
Postcondition:
constructs empty vector with capacity that begins at initialCapacity and extends by capacityIncr or doubles if 0. New entries in vector are initialized to initValue.

Vector

public Vector(Vector that)

Vector

public Vector(java.util.Collection c)
Method Detail

ensureCapacity

public void ensureCapacity(int minCapacity)
Ensure that the vector is capable of holding at least minCapacity values without expansion.

Parameters:
minCapacity - The minimum size of array before expansion.
Postcondition:
the capacity of this vector is at least minCapacity

add

public void add(java.lang.Object obj)
Add an element to the high end of the array, possibly expanding vector.

Specified by:
add in interface List
Specified by:
add in interface Structure
Overrides:
add in class AbstractList
Parameters:
obj - The object to be added to the end of the vector.
See Also:
AbstractList.addLast(java.lang.Object)
Postcondition:
adds new element to end of possibly extended vector

addElement

public void addElement(java.lang.Object o)
Add an element to the high end of the array, possibly expanding vector.

Parameters:
obj - The object to be added to the end of the vector.
Postcondition:
adds new element to end of possibly extended vector

remove

public java.lang.Object remove(java.lang.Object element)
Remove an element, by value, from vector.

Specified by:
remove in interface List
Specified by:
remove in interface Structure
Parameters:
element - the element to be removed.
Returns:
the element actually removed, or if none, null.
Postcondition:
element equal to parameter is removed and returned

capacity

public int capacity()
Determine the capacity of the vector. The capacity is always at least as large as its size.

Returns:
The size of the array underlying the vector.
Postcondition:
returns allocated size of the vector

clone

public java.lang.Object clone()
Construct a shallow copy of the vector. The vector store is copied, but the individual elements are shared objects.

Overrides:
clone in class java.lang.Object
Returns:
A copy of the original vector.
Postcondition:
returns a copy of the vector, using same objects

contains

public boolean contains(java.lang.Object elem)
Determine if a value appears in a vector.

Specified by:
contains in interface List
Specified by:
contains in interface Structure
Overrides:
contains in class AbstractList
Parameters:
elem - The value sought.
Returns:
True iff the value appears in the vector.
Postcondition:
returns true iff Vector contains the value (could be faster, if orderedVector is used)

copyInto

public void copyInto(java.lang.Object[] dest)
Copy the contents of the vector into an array. The array must be large enough to accept all the values in the vector.

Parameters:
dest - An array of size at least size().
Precondition:
dest has at least size() elements
Postcondition:
a copy of the vector is stored in the dest array

elementAt

public java.lang.Object elementAt(int index)
Fetch the element at a particular index. The index of the first element is zero.

Parameters:
index - The index of the value sought.
Returns:
A reference to the value found in the vector.
Precondition:
0 <= index && index < size()
Postcondition:
returns the element stored in location index

get

public java.lang.Object get(int index)
Fetch the element at a particular index. The index of the first element is zero.

Specified by:
get in interface List
Parameters:
index - The index of the value sought.
Returns:
A reference to the value found in the vector.
Precondition:
0 <= index && index < size()
Postcondition:
returns the element stored in location index

iterator

public java.util.Iterator iterator()
Construct a iterator over the elements of the vector. The iterator considers elements with increasing index.

Specified by:
iterator in interface List
Specified by:
iterator in interface Structure
Returns:
an iterator to traverse the vector.
See Also:
AbstractIterator, Iterator, Enumeration, Structure.elements()
Postcondition:
returns an iterator allowing one to view elements of vector

firstElement

public java.lang.Object firstElement()
Get access to the first element of the vector.

Returns:
Access to the first element of the vector.
Precondition:
vector contains an element
Postcondition:
returns first value in vector

indexOf

public int indexOf(java.lang.Object elem)
Assuming the data is not in order, find the index of a value, or return -1 if not found.

Specified by:
indexOf in interface List
Parameters:
elem - The value sought in vector.
Returns:
The index of the first occurrence of the value.
Postcondition:
returns index of element equal to object, or -1; starts at 0

indexOf

public int indexOf(java.lang.Object elem,
                   int index)
Assuming the data is not in order, find the index of a value or return -1 if the value is not found. Search starts at index.

Parameters:
elem - The value sought.
index - The first location considered.
Returns:
The index of the first location, or -1 if not found.
Postcondition:
returns index of element equal to object, or -1; starts at index

insertElementAt

public void insertElementAt(java.lang.Object obj,
                            int index)
Insert an element at a particular location. Vector is grown as needed

Parameters:
obj - The value to be inserted.
index - The location of the new value.
Precondition:
0 <= index <= size()
Postcondition:
inserts new value in vector with desired index, moving elements from index to size()-1 to right

add

public void add(int index,
                java.lang.Object obj)
Insert an element at a particular location. Vector is grown as needed

Specified by:
add in interface List
Parameters:
obj - the value to be inserted.
index - the location of the new value.
Precondition:
0 <= index <= size()
Postcondition:
inserts new value in vector with desired index, moving elements from index to size()-1 to right

isEmpty

public boolean isEmpty()
Determine if the Vector contains no values.

Specified by:
isEmpty in interface List
Specified by:
isEmpty in interface Structure
Overrides:
isEmpty in class AbstractList
Returns:
True iff the vector is empty.
Postcondition:
returns true iff there are no elements in the vector

lastElement

public java.lang.Object lastElement()
Fetch a reference to the last value in the vector.

Returns:
A reference to the last value.
Precondition:
vector is not empty
Postcondition:
returns last element of the vector

lastIndexOf

public int lastIndexOf(java.lang.Object obj)
Search for the last occurrence of a value within the vector. If none is found, return -1.

Specified by:
lastIndexOf in interface List
Parameters:
obj - The value sought.
Returns:
The index of the last occurrence in the vector.
Postcondition:
returns index of last occurrence of object in the vector, or -1

lastIndexOf

public int lastIndexOf(java.lang.Object obj,
                       int index)
Find the index of the last occurrence of the value in the vector before the indexth position.

Parameters:
obj - The value sought.
index - The last acceptable index.
Returns:
The index of the last occurrence of the value, or -1 if none.
Precondition:
index >= 0
Postcondition:
returns the index of last occurrence of object at or before index

clear

public void clear()
Remove all the values of the vector.

Specified by:
clear in interface List
Specified by:
clear in interface Structure
Postcondition:
vector is empty

removeAllElements

public void removeAllElements()
Remove all the elements of the vector. Kept for compatibility with java.util.Vector.

See Also:
clear()
Postcondition:
vector is empty

removeElementAt

public void removeElementAt(int where)
Remove an element at a particular location.

Parameters:
where - The location of the element to be removed.
Precondition:
0 <= where && where < size()
Postcondition:
indicated element is removed, size decreases by 1

remove

public java.lang.Object remove(int where)
Remove an element at a particular location.

Specified by:
remove in interface List
Parameters:
where - The location of the element to be removed.
Returns:
value retrieved from location i (returns null if i invalid)
Precondition:
0 <= where && where < size()
Postcondition:
indicated element is removed, size decreases by 1

setElementAt

public void setElementAt(java.lang.Object obj,
                         int index)
Change the value stored at location index.

Parameters:
obj - The new value to be stored.
index - The index of the new value.
Precondition:
0 <= index && index < size()
Postcondition:
element value is changed to obj

set

public java.lang.Object set(int index,
                            java.lang.Object obj)
Change the value stored at location index.

Specified by:
set in interface List
Parameters:
obj - The new value to be stored.
index - The index of the new value.
Returns:
former value of ith entry of list.
Precondition:
0 <= index && index < size()
Postcondition:
element value is changed to obj; old value is returned

setSize

public void setSize(int newSize)
Explicitly set the size of the array. Any new elements are initialized to the default value.

Parameters:
newSize - The ultimate size of the vector.
Precondition:
newSize >= 0
Postcondition:
vector is resized, any new elements are initialized

size

public int size()
Determine the number of elements in the vector.

Specified by:
size in interface List
Specified by:
size in interface Structure
Returns:
The number of elements within the vector.
Postcondition:
returns the size of the vector

trimToSize

public void trimToSize()
Trim the vector to exactly the correct size.

Postcondition:
minimizes allocated size of vector

toString

public java.lang.String toString()
Determine a string representation for the vector.

Overrides:
toString in class java.lang.Object
Returns:
A string representation for the vector.
Postcondition:
returns a string representation of vector