摘要: class MyCircularQueue: def __init__(self, k: int): """ Initialize your data structure here. Set the size of the queue to be k. """ self.k=k self.front=-1 ... 阅读全文
posted @ 2019-08-18 23:59 橘子先生123 阅读(265) 评论(0) 推荐(0)