Python:实现两个队列实现栈算法 class StackWithTwoQueues(object): def __init__(self): self._stack1 = [] self._stack2