基礎算法(棧、隊列、排序)

棧(先進後出 、後出先進) # 定義一個棧(FILO) class Stack(object): def __init__(self): self.stack = [] def pop(self): if self.is_empty(): return None else: return
相關文章
相關標籤/搜索