假设你执行了下列的栈操作:s=Stack()


假设你执行了下列的栈操作:s=Stack()

s.push(1)

s.push(3)

s.push(5)

s.pop()

s.push(7)现在栈内还有哪些元素?

A.1,5,7

B.3,5,7

C.1,3,7

D.1,3,5

正确答案:1,3,7


Tag:算法与数据结构 元素 操作 时间:2022-01-19 14:01:28