LinkedList学习笔记
Posted 等待戈多儿
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LinkedList学习笔记相关的知识,希望对你有一定的参考价值。
推荐阅读博文:
JAVA LinkedList和ArrayList的使用及性能分析
http://www.jb51.net/article/42767.htm
ArrayList是一个动态数组(快速随机访问元素),LinkedList是双向链表实现的(快速插入,删除元素)。其特性是由其数据结构决定的。
LinkedList也是一个简单的数据结构。用法也与ArrayList相似。
public boolean add(E e)
linkLast(e);
return true;
linkLast(e)方法是将元素添加到链表的结尾。
/**
* Links e as last element.
*/
void linkLast(E e)
final Node<E> l = last;
final Node<E> newNode = new Node<>(l, e, null);
last = newNode;
if (l == null)
first = newNode;
else
l.next = newNode;
size++;
modCount++;
transient Node<E> first;
transient Node<E> last;
如果是插入的元素是第一个元素,即LinkedList没有结尾(last)元素:
如果插入的元素是第二个元素:
依次类推,不外如是。
get(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<(sinze>>1)(size除以2)这句看出,在查找指定位置元素时,是对list从中间进行分割,然后遍历。
以上是关于LinkedList学习笔记的主要内容,如果未能解决你的问题,请参考以下文章