: 最上面的元素不就是 1
: : a.4 b.3 c.2 d.1 e.None of the above
: : 我認為答案的關鍵在top element of Stack
: : 另一題也是台聯100
: : 25.A stack is initially empty, then the following commands are performed:
: : push 5
5(頂)
: : push 7
7(頂)
5
: : pop
pop是把最上的丟掉 所以丟掉7 故變成
5(頂)
: : push 10
10(頂)
5
: : push 5
5