Python3 鏈表、隊列和棧的實現

# -!- coding: utf-8 -!- # !/usr/bin/env python 3.6.3 # author: Vivian # time: 2018/9/16 # 使用list列表構造棧 class Stack(object): def __init__(self): # 設置私有變量,不容許修改 self.__list = []
相關文章
相關標籤/搜索