Trace Array Implementation

  • Trace the core operations of Stack (array-based implementation).

Think about an array-based implementation of Stack such that the core operations are constant time.

Exercise Complete the table below: update the array values at indices 0, 1, 2, 3, and 4 as you trace the operations; show value returned if any.

Operation[ 0 ][ 1 ][ 2 ][ 3 ][ 4 ]Return Value
push(6)
push(10)
push(2)
top()
pop()
push(15)
pop()
pop()
push(5)
top()
Solution
Operation[ 0 ][ 1 ][ 2 ][ 3 ][ 4 ]Return Value
push(6)6
push(10)610
push(2)6102
top()61022
pop()610
push(15)61015
pop()610
pop()6
push(5)65
top()655
Resources