本次博客带领大家学习集合中的LinkedList底层结构。
public class LinkedList01 {
public static void main(String[] args) {
// 模拟一个简单的双向链表
Node jack = new Node("jack");
Node tom = new Node("tom");
Node ld = new Node("领导");
//连接三个节点,形成双向链表
//jack ->tom ->ld
jack.next = tom;
tom.next = ld;
//ld ->tom ->jack
ld.pre =tom;
tom.pre = jack;
Node first = jack;//让first引用指向jack,就是双向链表的头节点
Node last = ld;//让last引用指向ld,就是双向链表的尾节点
//演示:从头到尾进行遍历
System.out.println("=======从头到尾进行遍历===");
while (true){
if(first == null){
break;
}
//输出first 信息
System.out.println(first);
first = first.next;
}
//演示:从尾到头的遍历
System.out.println("=======从尾到头的遍历===");
while (true){
if(last == null){
break;
}
//输出first 信息
System.out.println(last);
last = last.pre;
}
//演示链表的添加对象/数据
//要求,是在tom---领导直接插入一个对象 smith
//1.先创建一个Node 节点,name 就是 smith
Node smith = new Node("smith");
//下面就把Smith加入到链表中
smith.pre = tom;
smith.next = ld;
ld.pre = smith;
tom.next = smith;
first = jack;
System.out.println("=======从头到尾进行遍历===");
while (true){
if(first == null){
break;
}
//输出first 信息
System.out.println(first);
first = first.next;
}
last = ld;
System.out.println("=======从尾到头的遍历===");
while (true){
if(last == null){
break;
}
//输出first 信息
System.out.println(last);
last = last.pre;
}
}
}
//定义一个Node类,Node对象,表示双向链表的一个节点
class Node{
public Object item;//真正存放数据
public Node next; //指向后一个节点
public Node pre; //指向前一个节点
public Node(Object name){
this.item = name;
}
public String toString(){
return "Node name=" +item;
}
}
1. LinkedList linkedList = new LinkedList();
public LinkedList() {}
2. 这时 linkedList 的属性 first = null ,last = null
3. 执行 添加
public boolean add(E e) {
linkLast(e);
return true;
}
4. 将新的节点,加入到双向链表的最后
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++;
}
linkedList.remove(); 这里默认删除的是第一个节点
1.执行
public E remove() {
return removeFirst();
}
2.执行
public E removeFirst() {
final Node<E> f = first;
if (f == null)
throw new NoSuchElementException();
return unlinkFirst(f);
}
3.执行 unlinkFirst ,将 f 指向的双向链表的第一个节点拿掉
private E unlinkFirst(Node<E> f) {
// assert f == first && f != null;
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;
}
public class LinkedListCRUD {
public static void main(String[] args) {
LinkedList linkedList = new LinkedList();
linkedList.add(1);
linkedList.add(2);
linkedList.add(3);
System.out.println("linkedList="+linkedList);
//演示一个删除节点的
linkedList.remove();//这里默认删除的是第一个节点
System.out.println("linkedList="+linkedList);
//修改某个节点对象
linkedList.set(1,999);
System.out.println("linkedList="+linkedList);
//得到某个节点
//get(1)是得到双向链表的第二个对象
Object o = linkedList.get(1);
System.out.println(o);
//因为LinkedList 是 实现了List接口,遍历方式
System.out.println("====LinkedList遍历迭代器=====");
Iterator iterator = linkedList.iterator();
while (iterator.hasNext()) {
Object next = iterator.next();
System.out.println("next="+next);
}
System.out.println("====LinkedList遍历迭代器增强for=====");
for (Object o1 :linkedList) {
System.out.println("o1="+o1);
}
System.out.println("====LinkedList遍历迭代器普通for=====");
for (int i = 0; i <linkedList.size() ; i++) {
System.out.println(linkedList.get(i));
}
}
}
底层结构 | 增删效率 | 改查效率 | |
---|---|---|---|
ArrayList | 可变数组 | 较低,数组扩容 | 较高 |
LinkedList | 双向链表 | 较高,通过链表追加 | 较低 |
如何选择ArrayList和LinkedList: