Skip to content

Latest commit

 

History

History

stacks

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 

Stacks purely implemented using Arrays.

@author A.Mano Sriram
@dateCreated 5th April, 2019

Operations :

  • push(data)
  • pop()
  • isEmpty()
  • isFull()
  • getTopElement()
push(data)  : Pushes Element to the Top.

pop()       : Removes the Top Most Element.

isEmpty()   : Returns True if the Stack is Empty, else False.

isFull()    : Returns True if the Stack if Full, else False.

getTopElement() : Returns the Top Most Element in the Stack.

More Problems on Stacks will be Added.