jdk源码->集合->LinkedList
类的属性
public class LinkedList<E>
extends AbstractSequentialList<E>
implements List<E>, Deque<E>, Cloneable, java.io.Serializable
{
// 实际元素个数
transient int size = 0;
// 指向头节点的指针
transient Node<E> first;
// 指向尾节点的指针
transient Node<E> last;
}
构造函数
LinkedList()型构造函数
public LinkedList() {
}
LinkedList(Collection<? extends E>)型构造函数
public LinkedList(Collection<? extends E> c) {
// 调用无参构造函数
this();
// 添加集合中所有的元素
addAll(c);
}
核心函数分析
add(E e)函数
public boolean add(E e) {
// 添加到末尾
linkLast(e);
return true;
}
linklast(E e)函数分析 addLast函数的实际调用
void linkLast(E e) {
// 记住尾结点指针
final Node<E> l = last;
// 新结点的prev为l,后继为null,值为e
final Node<E> newNode = new Node<>(l, e, null);
// 更新尾结点指针
last = newNode;
if (l == null) // 如果链表为空
first = newNode; // 头指针等于尾指针
else // 尾结点不为空
l.next = newNode; // 尾结点的后继为新生成的结点
// 大小加1
size++;
// 结构性修改加1
modCount++;
}
linkFirst(E e)函数 addFirst函数的实际调用
private void linkFirst(E e) {
//记住头结点
final Node<E> f = first;
//实例化新节点,prev = null,last = first
final Node<E> newNode = new Node<>(null, e, f);
//头指针指向新节点
first = newNode;
if (f == null)
//如果头指针为空的话,尾指针也指向新节点
last = newNode;
else
f.prev = newNode;
size++;
modCount++;
}
add(int index,E element)函数
public void add(int index, E element) {
checkPositionIndex(index);
if (index == size)
linkLast(element);
else
linkBefore(element, node(index));
}
linkBefore(E e,Node succ)
void linkBefore(E e, Node<E> succ) {
// 记住前驱
final Node<E> pred = succ.prev;
//实例化新节点,初始化前驱,后继
final Node<E> newNode = new Node<>(pred, e, succ);
succ.prev = newNode;
if (pred == null)
//如果为头插,修改头指针指向该新节点
first = newNode;
else
pred.next = newNode;
size++;
modCount++;
}
addAll(int index, Collection<? extends E> c)函数
// 添加一个集合
public boolean addAll(int index, Collection<? extends E> c) {
// 检查插入的的位置是否合法
checkPositionIndex(index);
// 将集合转化为数组
Object[] a = c.toArray();
// 保存集合大小
int numNew = a.length;
if (numNew == 0) // 集合为空,直接返回
return false;
Node<E> pred, succ; // 前驱,后继,注意是插入整个集合的入前驱与后继
if (index == size) { // 如果插入位置为链表末尾,则后继为null,前驱为尾结点
succ = null;
pred = last;
} else { // 插入位置为其他某个位置
succ = ode(index); n// 寻找到该结点
pred = succ.prev; // 保存该结点的前驱
}
for (Object o : a) { // 遍历数组
E e = (E) o; // 向下转型
// 生成新结点
Node<E> newNode = new Node<>(pred, e, null);
if (pred == null) // 表示在第一个元素之前插入(索引为0的结点)
first = newNode;
else
pred.next = newNode;
pred = newNode;
}
if (succ == null) { // 表示在最后一个元素之后插入
last = pred;
} else {
pred.next = succ;
succ.prev = pred;
}
// 修改实际元素个数
size += numNew;
// 结构性修改加1
modCount++;
return true;
}
node(int index)函数
Node<E> node(int index) {
// 判断插入的位置在链表前半段或者是后半段
if (index < (size >> 1)) { // 插入位置在前半段
Node<E> x = first;
for (int i = 0; i < index; i++) // 从头结点开始正向遍历
x = x.next;
return x; // 返回该结点
} else { // 插入位置在后半段
Node<E> x = last;
for (int i = size - 1; i > index; i--) // 从尾结点开始反向遍历
x = x.prev;
return x; // 返回该结点
}
}
为什么不分成三段,因为链表的取index结点依赖于first和last指针,即使分成再多的段,定位多么的精确,还是要从first或者last开始遍历
remove(Object o)函数
public boolean remove(Object o) {
if (o == null) {
//同样说明LinkedList允许插入null
for (Node<E> x = first; x != null; x = x.next) {
if (x.item == null) {
unlink(x);
return true;
}
}
} else {
for (Node<E> x = first; x != null; x = x.next) {
if (o.equals(x.item)) {
unlink(x);
return true;
}
}
}
return false;
}
unlink(Node x)函数
E unlink(Node<E> x) {
//返回x的结点值
final E element = x.item;
//记住前驱
final Node<E> next = x.next;
//记住后继
final Node<E> prev = x.prev;
//如果删除的结点是头结点,头指针指向next
if (prev == null) {
first = next;
} else {
prev.next = next;
x.prev = null;
}
//如果删除的结点是尾结点,尾指针指向prev
if (next == null) {
last = prev;
} else {
next.prev = prev;
x.next = null;
}
//集合内容清null
x.item = null;
size--;
modCount++;
return element;
}
unlinkFirst(Node f)函数 removeFirst函数的实际调用
private E unlinkFirst(Node<E> f) {
// 记住结点值和后继
final E element = f.item;
final Node<E> next = f.next;
f.item = null;
f.next = null; // help GC
//头指针指向后继
first = next;
if (next == null)
//如果删除结点后链表为空,尾指针指向空
last = null;
else
next.prev = null;
size--;
modCount++;
return element;
}
unlinkLast(Node l) removeLast函数的实际调用
private E unlinkLast(Node<E> l) {
// 记住结点值和前驱
final E element = l.item;
final Node<E> prev = l.prev;
l.item = null;
l.prev = null; // help GC
//尾结点指向前驱
last = prev;
if (prev == null)
//如果删除结点后链表为空,头指针指向空
first = null;
else
prev.next = null;
size--;
modCount++;
return element;
}
jdk源码->集合->LinkedList的更多相关文章
- 读JDK源码集合部分
以前读过一遍JDK源码的集合部分,读完了一段时间后忘了,直到有一次面试简历上还写着读过JDK集合部分的源码,但面试官让我说说,感觉记得不是很清楚了,回答的也模模糊糊的,哎,老了记性越来越差了,所以再回 ...
- JDK源码学习LinkedList
LinkedList是List接口的子类,它底层数据结构是双向循环链表.LinkedList还实现了Deque接口(double-end-queue双端队列,线性collection,支持在两端插入和 ...
- JDK源码分析 – LinkedList
LinkedList类的申明 public class LinkedList<E> extends AbstractSequentialList<E> implements L ...
- 【JDK】JDK源码分析-LinkedList
概述 相较于 ArrayList,LinkedList 在平时使用少一些. LinkedList 内部是一个双向链表,并且实现了 List 接口和 Deque 接口,因此它也具有 List 的操作以及 ...
- Java源码-集合-LinkedList
基于JDK1.8.0_191 介绍 LinkedList是以节点来保存数据的,不像数组在创建的时候需要申请一段连续的空间,LinkedList里的数据是可以存放在不同的空间当中,然后以内存地址作为 ...
- jdk源码->集合->HashMap
一.hash算法 1.1 hash简介 hash,一般翻译为散列,就是把任意长度的输入,通过散列算法,变换成固定长度的输出,该输出值就是散列值,这种转换是一种压缩映射,也就是散列的空间小于输入的空间, ...
- jdk源码->集合->ArrayList
类的属性 public class ArrayList<E> extends AbstractList<E> implements List<E>, RandomA ...
- JDK源码阅读——LinkedList实现
1 继承结构图 LinkedList是List的另一种实现.继承自AbstractSequentialList 2 数据结构 LinkedList与ArrayList不同的是LinkedList底层使 ...
- jdk源码->集合->ConcurrentHashMap
类的属性 public class ConcurrentHashMap<K,V> extends AbstractMap<K,V> implements ConcurrentM ...
随机推荐
- 浏览器history操作实现一些功能
返回拦截 功能:从广告进入到落地页后,给history增加一个页面,拦截返回动作 主要用到的是h5中的history对象,使用了pushState,和replaceState来操作. 并且加入了一些条 ...
- js,jq.事件代理(事件委托)复习。
<ul id = "lists"> <li>列表1</li> <li>列表2</li> <li>列表3< ...
- 软件安装之-------VM虚拟机安装windows系统
一 准备工作 1 电脑已经安装上VMware Workstation 2 一个Windows系统,下载纯净版系统可到(www.itellyou.cn下载) 3 软碟通 下载可到(http://dow ...
- conda虚拟环境实践
1.查看本地创建了那些python版本 which python whereis python which主要用来查找可直接执行的命令,可以查找别名.whereis比which的搜索范围大了一些,同时 ...
- Shell脚本之反引号【``】和 $()
一.奇怪的返回 今天在搞监控的时候,修改一个老脚本,主要是通过对操作系统进行判断来获取不同的监控参数.(获取top参数在不同操作系统上也有个坑,会在另外一篇里面写) 脚本如下,非常简单: #处理Cen ...
- java实现 比较两个文本相似度-- java 中文版 simHash 实现 ,
比较两个文本的相似度 这里采用 simHash 算法 ; 分词是 基于 http://hanlp.linrunsoft.com/ 的开源 中文分词包 来实现分词 ; 实现效果图: 直接上源码: htt ...
- mongodb 聚合查询
操作符介绍: $project:包含.排除.重命名和显示字段 $match:查询,需要同find()一样的参数 $limit:限制结果数量 $skip:忽略结果的数量 $sort:按照给定的字段排序结 ...
- python网络数据采集(伴奏曲)
这里是前章,我们做一下预备.之前太多事情没能写博客~.. (此博客只适合python3x,python2x请自行更改代码) 首先你要有bs4模块 windows下安装:pip3 ...
- codechef [snackdown2017 Onsite Final] AND Graph
传送门 题解给出了一个很强势的dp: i<K $$dp[i][len]*Fib[len+2-(t[i]==1)] -> dp[i+1][len]$$ $$dp[i][len]*Fib[le ...
- Codeforces Round #415(Div. 2)-810A.。。。 810B.。。。 810C.。。。不会
CodeForces - 810A A. Straight «A» time limit per test 1 second memory limit per test 256 megabytes i ...