python:实现balance parenthesis平衡括号 class Stack: def __init__(self): self.items = [] def push(self, item)