Sunday, October 14, 2012

test


  • Language processing:

    • space for parameters and local variables is created internally using a stack.

    • compiler’s syntax check for matching braces is implemented by using stack.

    • support for recursion




Implementation


In the standard library of classes, the data type stack is an adapter class, meaning that a stack is built on top of other data structures. The underlying structure for a stack could be an array, a vector, an ArrayList, a linked list, or any other collection. Regardless of the type of the underlying data structure, a Stack must implement the same functionality. This is achieved by providing a unique interface:
public interface StackInterface<AnyType>
{
public void push(AnyType e);

public AnyType pop();

public AnyType peek();

public boolean isEmpty();
}

The following picture demonstrates the idea of implementation by composition.

 

Another implementation requirement (in addition to the above interface) is that all stack operations must run in constant time O(1). Constant time means that there is some constant k such that an operation takes k nanoseconds of computational time regardless of the stack size.

 

Array-based implementation










In an array-based implementation we maintain the following fields: an array A of a default size (≥ 1), the variable top that refers to the top element in the stack and the capacity that refers to the array size. The variable top changes from -1 to capacity - 1. We say that a stack is empty when top = -1, and the stack

No comments:

Post a Comment