DataStructures / Data structures Interview questions
What operations can be performed on stack data structure?
push: adds an item to stack.
pop: removes the top stack item.
peek: retrieves the value of top item without removing it.
More Related questions...