Stacks

From

Revision as of 03:40, 1 April 2009 by Admin (Talk | contribs)
Jump to: navigation, search

The Stack ADT is a collection of homogeneous data that organizes its entries according to the order in which they were added. The organization is called LIFO or Last In, First Out (Sometimes called FILO). In the ADT Stack, there is one access point called the top of the stack, and only the item at the top, which is the most recently added item, is visible. The normal operations that can be performed on a stack are: push(), pop(), peek(), and isEmpty(). Sometimes there will be an operation called isFull().

Intuitively, a stack is like a pile of plates where we can only remove a plate from the top and can only add a new plate on the top. In computer science we commonly place numbers on a stack, or perhaps place records on the stack.

Behavior of Stacks

Image:Stack1.gif

Implementation of Stacks

One of the many uses of a stack is to reverse data. Consider a singly linked list of numbers that is kept in order from smallest (at the head) to the largest (at the rear). What if I wanted to print out the numbers in order from largest to smallest? Implementation. A stack is usually implemented in one of two ways: either using an array or a linked list.


With an array, we need an isFull() operation. There is normally an index called top, which is initialized to -1. Given this, the push() operation is

if( not isFull() )
    stack[ ++top ] = data 

The pop() operations can then be implemented with

if( not isEmpty() )
    return( stack[ top-- ] )

The isFull() operation is

return( top == N – 1 ) 

And the isEmpty() operation is

return( top == -1 )

When a stack is implemented as a linked list, we do not usually need the isFull() operations, but the isEmpty() operation is the same as that of the list. The normal way to implement the stack is to add and remove nodes from the head of the list. Note that if we do this, we do not need to use a rear pointer for the list.


Note also that a stack is an efficient data structure as all operations are constant. The array based stack wastes space that the linked list does not.

Personal tools
MediaWiki Appliance - Powered by TurnKey Linux