C#集合練習題(鏈表LinkedList)

封裝一個集合 提供push(T value)在尾部添加新元素, pop()刪除並返回最後一個元素,、 shift()刪除並返回第一個元素, unshift(T value)在首位添加新元素; 底層用鏈表模式保存數據 實現用foreach循環自定義集合node class MyCollecion<T> : IEnumerable<T> { LinkedList<T> arr
相關文章
相關標籤/搜索