225. Implement Stack using Queues

題目 大意是使用queue隊列(僅用標準操作)來實現stack的操作。 我的代碼 主要思路:使用了雙端隊列,但默認屏蔽一些功能。使用了popleft() 和append()來實現。 class MyStack: def __init__(self): """ Initialize your data structure here. """ self.que
相關文章
相關標籤/搜索