Wednesday 22 June 2016

What operations can be performed on stacks?

The below operations can be performed on a stack −
  • push() − adds an item to stack
  • pop() − removes the top stack item
  • peek() − gives value of top item without removing it
  • isempty() − checks if stack is empty
  • isfull() − checks if stack is full

No comments:

Post a Comment