LinkedList底層原理

如圖所示 LinkedList 底層是基於雙向鏈表實現的,也是實現了 List 接口,因此也擁有 List 的一些特色(JDK1.7/8 以後取消了循環,修改成雙向鏈表)。node 新增方法 public boolean add(E e) { linkLast(e); return true; } /** * Links e as las
相關文章
相關標籤/搜索