Skip to content

Latest commit

 

History

History
26 lines (16 loc) · 576 Bytes

README.md

File metadata and controls

26 lines (16 loc) · 576 Bytes

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.