python實現棧,隊列

棧(LIFO) class Stack(object): """ 使用 python 實現棧 棧是一種LIFO(Last In First Out) 的數據結構,能夠封裝一個list實現 """ def __init__(self): self.__stack = list() def push(self, value):
相關文章
相關標籤/搜索