|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object structure.AbstractStructure<ELTTYPE> structure.AbstractLinear<ELTTYPE> structure.AbstractStack<ELTTYPE> structure.StackArray<ELTTYPE>
public class StackArray<ELTTYPE>
An implementation of a stack, based on array. The head of the stack is stored in the first position of the array, allowing the stack to grow and shrink in constant time. This stack implementation is ideal for applications that require a stack with a known maximum size that expands in constant time.
Example usage:
To reverse a string, we would use the following:
public static void main(String[] arguments) { if(arguments.length > 0){StackArray
reverseStack = newStackArray(arguments[0].length())
; String s = arguments[0]; for(int i=0; i < s.length(); i++){ reverseStack.push(new Character(s.charAt(i)))
; } while(!reverseStack.AbstractLinear.empty()
){ System.out.print(reverseStack.AbstractStack.pop()
); } System.out.println(); } }
Stack
,
StackVector
,
StackList
,
AbstractStack
Constructor Summary | |
---|---|
StackArray(int size)
Construct a stack capable of holding at least size elements. |
Method Summary | |
---|---|
void |
add(ELTTYPE item)
Add a value to the top of the stack. |
void |
clear()
Remove all elements from the stack. |
ELTTYPE |
get()
Get a reference to the top value in the stack. |
boolean |
isEmpty()
Determine if the stack is empty. |
boolean |
isFull()
Determine if the stack is full. |
java.util.Iterator<ELTTYPE> |
iterator()
Returns an iterator for traversing the structure. |
ELTTYPE |
remove()
Remove a value from the top of the stack. |
int |
size()
Determine the number of elements in the stack. |
java.lang.String |
toString()
Construct a string representation of the stack. |
Methods inherited from class structure.AbstractStack |
---|
getFirst, peek, pop, push |
Methods inherited from class structure.AbstractLinear |
---|
empty, remove |
Methods inherited from class structure.AbstractStructure |
---|
contains, elements, hashCode, values |
Methods inherited from class java.lang.Object |
---|
equals, getClass, notify, notifyAll, wait, wait, wait |
Methods inherited from interface structure.Stack |
---|
empty, getFirst, peek, pop, push |
Methods inherited from interface structure.Structure |
---|
contains, elements, remove, values |
Constructor Detail |
---|
public StackArray(int size)
size
- The maximum size of the stack.Method Detail |
---|
public void clear()
clear
in interface Structure<ELTTYPE>
public void add(ELTTYPE item)
add
in interface Linear<ELTTYPE>
add
in interface Stack<ELTTYPE>
add
in interface Structure<ELTTYPE>
item
- The value to be added.AbstractStack.push(ELTTYPE)
public ELTTYPE remove()
remove
in interface Linear<ELTTYPE>
remove
in interface Stack<ELTTYPE>
AbstractStack.pop()
public ELTTYPE get()
get
in interface Linear<ELTTYPE>
get
in interface Stack<ELTTYPE>
public java.util.Iterator<ELTTYPE> iterator()
Structure
iterator
in interface java.lang.Iterable<ELTTYPE>
iterator
in interface Structure<ELTTYPE>
AbstractIterator
,
Iterator
,
Enumeration
,
Structure.elements()
public int size()
size
in interface Linear<ELTTYPE>
size
in interface Stack<ELTTYPE>
size
in interface Structure<ELTTYPE>
public boolean isEmpty()
isEmpty
in interface Structure<ELTTYPE>
isEmpty
in class AbstractStructure<ELTTYPE>
AbstractLinear.empty()
public boolean isFull()
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |