707. 设计链表

因为题目说明不使用内置的库 一、直接使用数组实现 class MyLinkedList(object): def __init__(self): """ Initialize your data structure here. """ self.lst = [] def get(self, index): """
相关文章
相关标签/搜索