赞
踩
在python中,个人理解为栈可以用列表来代替
其中入栈为(利用append函数)
stack = []stack.append(<item>)
出栈为(利用pop函数)
stack.pop(-1) #stack.pop()也可
入栈为:
出栈为:
stack.pop(0)