Python用列表實現棧,隊列(一)

< Data Structures andAlgorithms in Python > Michael T.Goodrich,Roberto Tamassia,Michael H.Goldwasser 學習筆記html 用列表實現棧 棧方法 列表實現 S.push() L.append() S.pop() L.pop() S.top() L[-1] S.is_empty() len(L)==0 l
相關文章
相關標籤/搜索