LinkedList是java.util包下的Collection接口下的一个子类,也是我们常用的容器,底层是一个双向链表,也可以当做双端无界队列使用,而我们知道,双端队列其实也相当于一个栈,因此LinkedList其实是一个具有多种功能的容器。
以上便是LinkedList的属性,下面一一介绍:
transient int size = 0;
链表里元素的个数。
transient Node first;
链表的头结点。
transient Node last;
链表的尾节点。
注意:以上三个属性都是被transient关键字修饰,表示不可被序列化。LinkedList的序列化是通过反射调用重写的readObject方法和writeObject方法实现的,之所以如此做是为了只序列化存储的数据。(具体可以参考别的博客)
private static final long serialVersionUID = 876323262645176354L;
序列化ID
private static class Node {
E item;
Node next;
Node prev;
Node(Node prev, E element, Node next) {
this.item = element;
this.next = next;
this.prev = prev;
}
}
LinkedList的一个static内部类,链表里的每个节点都是通过Node来存储的,包含item,next,prev三个属性,item用来存储值,next用来存储后指针,prev用来存储前指针。
public LinkedList() {
}
public LinkedList(Collection extends E> c) {
this();
addAll(c);
}
构造方法:
public boolean add(E e) {
linkLast(e);
return true;
}
void linkLast(E e) {
final Node l = last;
final Node newNode = new Node<>(l, e, null);
last = newNode;
if (l == null)
first = newNode;
else
l.next = newNode;
size++;
modCount++;
}
add方法:向链表中插入一个元素
add方法会调用linkLast方法,该方法是在链表的最后插入一个元素。
public boolean remove(Object o) {
if (o == null) {
for (Node x = first; x != null; x = x.next) {
if (x.item == null) {
unlink(x);
return true;
}
}
} else {
for (Node x = first; x != null; x = x.next) {
if (o.equals(x.item)) {
unlink(x);
return true;
}
}
}
return false;
}
E unlink(Node x) {
// assert x != null;
final E element = x.item;
final Node next = x.next;
final Node prev = x.prev;
if (prev == null) {
first = next;
} else {
prev.next = next;
x.prev = null;
}
if (next == null) {
last = prev;
} else {
next.prev = prev;
x.next = null;
}
x.item = null;
size--;
modCount++;
return element;
}
remove方法:移除指定元素。
public boolean addAll(Collection extends E> c) {
return addAll(size, 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 pred, succ;
if (index == size) {
succ = null;
pred = last;
} else {
succ = node(index);
pred = succ.prev;
}
for (Object o : a) {
@SuppressWarnings("unchecked") E e = (E) o;
Node newNode = new Node<>(pred, e, null);
if (pred == null)
first = newNode;
else
pred.next = newNode;
pred = newNode;
}
if (succ == null) {
last = pred;
} else {
pred.next = succ;
succ.prev = pred;
}
size += numNew;
modCount++;
return true;
}
addAll方法:将一个Collection集合的元素添加到链表里。
第一个addAll方法会调用带下标的addAll方法,表示将元素要插入的位置,因此addAll默认是将元素全部插入链表尾。
public void addFirst(E e) {
linkFirst(e);
}
public void addLast(E e) {
linkLast(e);
}
public E removeFirst() {
final Node f = first;
if (f == null)
throw new NoSuchElementException();
return unlinkFirst(f);
}
public E removeLast() {
final Node l = last;
if (l == null)
throw new NoSuchElementException();
return unlinkLast(l);
}
addFirst方法:在链表头部加入一个节点
addLast方法:在链表尾部加入一个节点
removeFirst方法:删除链表头部第一个元素
removeLast方法:删除链表尾部第一个元素
linkLast和linkFirst方法之前介绍过,这里不再赘述。
public E get(int index) {
checkElementIndex(index);
return node(index).item;
}
Node node(int index) {
// assert isElementIndex(index);
if (index < (size >> 1)) {
Node x = first;
for (int i = 0; i < index; i++)
x = x.next;
return x;
} else {
Node x = last;
for (int i = size - 1; i > index; i--)
x = x.prev;
return x;
}
}
get方法:获得指定下标的元素。
public E set(int index, E element) {
checkElementIndex(index);
Node x = node(index);
E oldVal = x.item;
x.item = element;
return oldVal;
}
set方法:修改指定下标的元素值。
public void clear() {
// Clearing all of the links between nodes is "unnecessary", but:
// - helps a generational GC if the discarded nodes inhabit
// more than one generation
// - is sure to free memory even if there is a reachable Iterator
for (Node x = first; x != null; ) {
Node next = x.next;
x.item = null;
x.next = null;
x.prev = null;
x = next;
}
first = last = null;
size = 0;
modCount++;
}
clear方法:清空链表。
public boolean contains(Object o) {
return indexOf(o) != -1;
}
public int indexOf(Object o) {
int index = 0;
if (o == null) {
for (Node x = first; x != null; x = x.next) {
if (x.item == null)
return index;
index++;
}
} else {
for (Node x = first; x != null; x = x.next) {
if (o.equals(x.item))
return index;
index++;
}
}
return -1;
}
contains方法:判断列表中是否存在某个元素。
调用indexOf方法来查找该元素,如果不存在,返回下标为-1
indexOf方法:从头结点开始遍历,如果找到,返回对应下标,如果没找到,返回-1
public int size() {
return size;
}
size方法:返回当前链表中的元素个数。
================================================================================================
======================= 以上方法均是操作链表的方法 以下方法用来操作队列 ===============================
================================================================================================
public E poll() {
final Node f = first;
return (f == null) ? null : unlinkFirst(f);
}
poll方法:弹出队列元素,从链表头部取出,如果是空链表则返回null,会将链表头结点删除
public E pop() {
return removeFirst();
}
public E removeFirst() {
final Node f = first;
if (f == null)
throw new NoSuchElementException();
return unlinkFirst(f);
}
pop方法:弹出队列元素,从链表头部取出,如果是空链表则会抛出异常,会将链表头结点删除
public E peek() {
final Node f = first;
return (f == null) ? null : f.item;
}
peek方法:查看队头元素,从链表头部取出,如果是空链表则会返回null,不会将链表头结点删除
public void push(E e) {
addFirst(e);
}
push方法:向队列中添加一个元素,从链表的头部插入