Showing posts with label Stack. Show all posts
Showing posts with label Stack. Show all posts

Sunday, 8 March 2015

Stack implementation using array


Implementation of stack using array have methods 

push(),pop(),reverse() and display.


Impementation of stack using linked list in c++

/*

    Implementation of stack using linklist
    Methods included are:
    push();
    pop();
    reverse();
    display();
    topofstack();


@author: vikas bek
   
*/