707. 設計鏈表

因爲題目說明不使用內置的庫 一、直接使用數組實現 class MyLinkedList(object): def __init__(self): """ Initialize your data structure here. """ self.lst = [] def get(self, index): """
相關文章
相關標籤/搜索