Merge pull request #55 from pengchzn/patch-2

Update array_stack.py
pull/63/head
Yudong Jin 2 years ago committed by GitHub
commit fcbe480b76
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -60,8 +60,8 @@ if __name__ == "__main__":
print("栈顶元素 peek =", peek)
""" 访问索引 index 处元素 """
num = stack.get(3);
print("栈索引 3 处的元素为 num =", num);
num = stack.get(3)
print("栈索引 3 处的元素为 num =", num)
""" 元素出栈 """
pop = stack.pop()

Loading…
Cancel
Save