Stacks Implementation

June 2, 2007

The first implementation uses an array to create the stack
data structure, and the second implementation uses pointers. Read the rest of this entry »


Pointers

June 2, 2007

In our last lesson, we discovered a problem with representing data structures that are not linear. Read the rest of this entry »


Stack

June 2, 2007

Another common linear data structure is the stack. Read the rest of this entry »