Home C Data Structure Stack Data Structure

Stack Data Structure

Stack and Implemeting Stack using Array - Stack is a data structure which works based on principle of LIFO (last in first out).

Implementing a Stack using Link Representation - This is a another version of stack data structure implementation. With this version the stack size is dynamic and determined at runtime.