【数据结构】LinkedList与链表

简介: 【数据结构】LinkedList与链表

1. ArrayList的缺陷

上节课已经熟悉了ArrayList的使用,并且进行了简单模拟实现。通过源码知道,ArrayList底层使用数组来存储元素:

public class ArrayList<E> extends AbstractList<E>
implements List<E>, RandomAccess, Cloneable, java.io.Serializable
{
  // ...
  // 默认容量是10
  private static final int DEFAULT_CAPACITY = 10;
  //...
  // 数组:用来存储元素
  transient Object[] elementData; // non-private to simplify nested class access
  // 有效元素个数
  private int size;
  public ArrayList(int initialCapacity) {
  if (initialCapacity > 0) {
  this.elementData = new Object[initialCapacity];
  } else if (initialCapacity == 0) {
  this.elementData = EMPTY_ELEMENTDATA;
  } else {
  throw new IllegalArgumentException("Illegal Capacity: "+
  initialCapacity);
  }
  }
//
}

由于其底层是一段连续空间,当在ArrayList任意位置插入或者删除元素时,就需要将后序元素整体往前或者往后搬移,时间复杂度为O(n),效率比较低,因此ArrayList不适合做任意位置插入和删除比较多的场景。因此:java集合中又引入了LinkedList,即链表结构。

2. 链表

2.1 链表的概念及结构

链表是一种物理存储结构上非连续存储结构,数据元素的逻辑顺序是通过链表中的引用链接次序实现的 。

实际中链表的结构非常多样,以下情况组合起来就有8种链表结构:

  1. 单向或者双向
  2. 带头或者不带头
  3. 循环或者非循环

虽然有这么多的链表的结构,但是我们重点掌握两种:

无头单向非循环链表:结构简单,一般不会单独用来存数据。实际中更多是作为其他数据结构的子结构,如哈希桶、图的邻接表等等。另外这种结构在笔试面试中出现很多

无头双向链表:在Java的集合框架

  1. 库中LinkedList底层实现就是无头双向循环链表

2.2 链表的实现

1.链表的功能

package mysingleList;
public interface IList {
    void addFirst(int data);
    //尾插法
    void addLast(int data);
    //任意位置插入,第一个数据节点为0号下标
    void addIndex(int index,int data);
    //查找是否包含关键字key是否在单链表当中
    boolean contains(int key);
    //删除第一次出现关键字为key的节点
    void remove(int key);
    //删除所有值为key的节点
    void removeAllKey(int key);
    //得到单链表的长度
    int size();
    void clear();
    void display();
}

2.初始化链表

public class MySingleList implements IList{
    static class ListNode{
        public int val;
        public ListNode next;
        public ListNode(int val){
            this.val = val;
        }
    }
    public ListNode head;
    public void createList(){
        ListNode node1 = new ListNode(12);
        ListNode node2 = new ListNode(23);
        ListNode node3 = new ListNode(34);
        ListNode node4 = new ListNode(45);
        ListNode node5 = new ListNode(56);
        node1.next = node2;
        node2.next = node3;
        node3.next = node4;
        node4.next = node5;
        this.head = node1;
    }

开辟了内存空间

使每个node的next域指向下一个节点的地址,连接成链表

head指向第一个节点的地址

3.实现功能接口

3.1头插添加元素

 public void addFirst(int data) {
        ListNode node = new ListNode(data);
        if(this.head == null){
            this.head = node;
        }
        else {
            node.next = this.head;
            this.head = node;
        }
    }

对 node.next = this.head;

this.head = node;

进行解释,node的next域指向下一个节点的地址

head继续为头节点

3.2尾插法添加新元素

public void addLast(int data) {
        ListNode node = new ListNode(data);
        ListNode cur = head;
        if (this.head == null){
            this.head = node;
        }
        else {
            while(cur.next != null){
                cur = cur.next;
            }
            cur.next = node;
        }
    }

找到最后一个元素cur,cur的next指向要插入元素的地址

3.3找到下标的前驱节点

 private ListNode searchPrev(int index){
            ListNode cur = this.head;
            int count = 0;
            while(count != index-1){
                cur = cur.next;
                count++;
            }
            return cur;
        }

3.4指定位置插入元素

public void addIndex(int index, int data) {
    //判断index的位置是否合法
        if(index < 0 || index >size()){
            return;
        }
        //插入到第一个节点位置
        if(index == 0){
            addFirst(data);
        }
        //插入到最后一个节点的位置
        if (index == size()){
            addLast(data);
        }
        //中间位置
        else {
            ListNode node = new ListNode(data);
            ListNode cur = searchPrev(index);
            node.next = cur.next;
            cur.next = node;
        }
    }

3.5指定元素是否存在

public boolean contains(int key) {
        ListNode cur = this.head;
        while(cur != null){
            if(cur.val == key){
                return true;
            }
        }
        return false;
    }

遍历一遍链表寻找是否有key元素

3.6找到指定元素的前驱节点

private ListNode findPrev(int key){
        ListNode cur = this.head;
        while(cur.next != null){
            if (cur.next.val == key){
                return cur;
            }
            cur = cur.next;
        }
        return null;
    }

3.7删除指定节点

public void remove(int key) {
        if (this.head == null){
            System.out.println("没有节点,无法删除");
            return;
        }
        //指定元素在头节点
        if (this.head.val == key){
            this.head = this.head.next;
        }
        else {
            ListNode cur = findPrev(key);
            //没有找到指定元素
            if (cur == null){
                System.out.println("没有找到要删除的节点");
                return;
            }
            //找到了指定元素
           ListNode del = cur.next;
            cur.next = del.next;
        }
    }

3.8删除所有元素为key的节点

public void removeAllKey(int key) {
        if(this.head == null){
            return;
        }
        ListNode prev = this.head;
        ListNode cur = this.head.next;
        while(cur != null){
            if(cur.val == key){
                prev.next = cur.next;
                cur = cur.next;
            }
            else {
                prev = cur;
                cur = cur.next;
            }
        }
        //删除的节点为头节点
        if(this.head.val == key){
            this.head = this.head.next;
        }
    }

3.9链表的长度

public int size() {
        ListNode cur = this.head;
        int count = 0;
        while(cur != null) {
            count++;
            cur = cur.next;
        }
        return count;
    }

3.9清空链表

public void clear() {
        ListNode cur = this.head;
        while(cur != null){
            ListNode curNext = cur.next;
            cur.next = null;
            cur = curNext;
        }
        head = null;
    }

完整代码

package mysingleList;
public class MySingleList implements IList{
    static class ListNode{
        public int val;
        public ListNode next;
        public ListNode(int val){
            this.val = val;
        }
    }
    public ListNode head;
    public void createList(){
        ListNode node1 = new ListNode(12);
        ListNode node2 = new ListNode(23);
        ListNode node3 = new ListNode(34);
        ListNode node4 = new ListNode(45);
        ListNode node5 = new ListNode(56);
        node1.next = node2;
        node2.next = node3;
        node3.next = node4;
        node4.next = node5;
        this.head = node1;
    }
    @Override
    public void addFirst(int data) {
        ListNode node = new ListNode(data);
        if(this.head == null){
            this.head = node;
        }
        else {
            node.next = this.head;
            this.head = node;
        }
    }
    @Override
    public void addLast(int data) {
        ListNode node = new ListNode(data);
        ListNode cur = head;
        if (this.head == null){
            this.head = node;
        }
        else {
            while(cur.next != null){
                cur = cur.next;
            }
            cur.next = node;
        }
    }
    @Override
    public void addIndex(int index, int data) {
        if(index < 0 || index >size()){
            return;
        }
        if(index == 0){
            addFirst(data);
        }
        if (index == size()){
            addLast(data);
        }
        else {
            ListNode node = new ListNode(data);
            ListNode cur = searchPrev(index);
            node.next = cur.next;
            cur.next = node;
        }
    }
        private ListNode searchPrev(int index){
            ListNode cur = this.head;
            int count = 0;
            while(count != index-1){
                cur = cur.next;
                count++;
            }
            return cur;
        }
    @Override
    public boolean contains(int key) {
        ListNode cur = this.head;
        while(cur != null){
            if(cur.val == key){
                return true;
            }
        }
        return false;
    }
    @Override
    public void remove(int key) {
        if (this.head == null){
            System.out.println("没有节点,无法删除");
            return;
        }
        if (this.head.val == key){
            this.head = this.head.next;
        }
        else {
            ListNode cur = findPrev(key);
            if (cur == null){
                System.out.println("没有找到要删除的节点");
                return;
            }
           ListNode del = cur.next;
            cur.next = del.next;
        }
    }
    private ListNode findPrev(int key){
        ListNode cur = this.head;
        while(cur.next != null){
            if (cur.next.val == key){
                return cur;
            }
            cur = cur.next;
        }
        return null;
    }
    @Override
    public void removeAllKey(int key) {
        if(this.head == null){
            return;
        }
        ListNode prev = this.head;
        ListNode cur = this.head.next;
        while(cur != null){
            if(cur.val == key){
                prev.next = cur.next;
                cur = cur.next;
            }
            else {
                prev = cur;
                cur = cur.next;
            }
        }
        if(this.head.val == key){
            this.head = this.head.next;
        }
    }
    @Override
    public int size() {
        ListNode cur = this.head;
        int count = 0;
        while(cur != null) {
            count++;
            cur = cur.next;
        }
        return count;
    }
    @Override
    public void clear() {
        ListNode cur = this.head;
        while(cur != null){
            ListNode curNext = cur.next;
            cur.next = null;
            cur = curNext;
        }
        head = null;
    }
    @Override
    public void display() {
        ListNode cur = this.head;
        while (cur != null){
            System.out.print(cur.val+" ");
            cur = cur.next;
        }
        System.out.println();
    }
}
目录
相关文章
|
17天前
|
存储 Java 索引
Java中的数据结构:ArrayList和LinkedList的比较
【10月更文挑战第28天】在Java编程世界中,数据结构是构建复杂程序的基石。本文将深入探讨两种常用的数据结构:ArrayList和LinkedList,通过直观的比喻和实例分析,揭示它们各自的优势与局限,帮助你在面对不同的编程挑战时做出明智的选择。
|
19天前
|
存储 C语言
【数据结构】手把手教你单链表(c语言)(附源码)
本文介绍了单链表的基本概念、结构定义及其实现方法。单链表是一种内存地址不连续但逻辑顺序连续的数据结构,每个节点包含数据域和指针域。文章详细讲解了单链表的常见操作,如头插、尾插、头删、尾删、查找、指定位置插入和删除等,并提供了完整的C语言代码示例。通过学习单链表,可以更好地理解数据结构的底层逻辑,提高编程能力。
46 4
|
20天前
|
算法 安全 搜索推荐
2024重生之回溯数据结构与算法系列学习之单双链表精题详解(9)【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构王道第2.3章之IKUN和I原达人之数据结构与算法系列学习x单双链表精题详解、数据结构、C++、排序算法、java、动态规划你个小黑子;这都学不会;能不能不要给我家鸽鸽丢脸啊~除了会黑我家鸽鸽还会干嘛?!!!
|
21天前
|
存储 Web App开发 算法
2024重生之回溯数据结构与算法系列学习之单双链表【无论是王道考研人还是IKUN都能包会的;不然别给我家鸽鸽丢脸好嘛?】
数据结构之单双链表按位、值查找;[前后]插入;删除指定节点;求表长、静态链表等代码及具体思路详解步骤;举例说明、注意点及常见报错问题所对应的解决方法
|
1月前
|
Java C++ 索引
让星星⭐月亮告诉你,LinkedList和ArrayList底层数据结构及方法源码说明
`LinkedList` 和 `ArrayList` 是 Java 中两种常见的列表实现。`LinkedList` 基于双向链表,适合频繁的插入和删除操作,但按索引访问元素效率较低。`ArrayList` 基于动态数组,支持快速随机访问,但在中间位置插入或删除元素时性能较差。两者均实现了 `List` 接口,`LinkedList` 还额外实现了 `Deque` 接口,提供了更多队列操作。
23 3
|
1月前
|
存储 缓存 索引
从底层数据结构和CPU缓存两方面剖析LinkedList的查询效率为什么比ArrayList低
本文详细对比了ArrayList和LinkedList的查询效率,从底层数据结构和CPU缓存两个方面进行分析。ArrayList基于动态数组,支持随机访问,查询时间复杂度为O(1),且CPU缓存对其友好;而LinkedList基于双向链表,需要逐个节点遍历,查询时间复杂度为O(n),且CPU缓存对其帮助不大。文章还探讨了CPU缓存对数组增删操作的影响,指出缓存主要作用于读取而非修改。通过这些分析,加深了对这两种数据结构的理解。
37 2
|
1月前
|
存储 Java
数据结构第三篇【链表的相关知识点一及在线OJ习题】
数据结构第三篇【链表的相关知识点一及在线OJ习题】
26 7
|
1月前
|
存储 安全 Java
【用Java学习数据结构系列】探索顺序表和链表的无尽秘密(附带练习唔)pro
【用Java学习数据结构系列】探索顺序表和链表的无尽秘密(附带练习唔)pro
23 3
|
1月前
|
算法 Java
数据结构与算法学习五:双链表的增、删、改、查
双链表的增、删、改、查操作及其Java实现,并通过实例演示了双向链表的优势和应用。
17 0
数据结构与算法学习五:双链表的增、删、改、查
|
19天前
|
C语言
【数据结构】双向带头循环链表(c语言)(附源码)
本文介绍了双向带头循环链表的概念和实现。双向带头循环链表具有三个关键点:双向、带头和循环。与单链表相比,它的头插、尾插、头删、尾删等操作的时间复杂度均为O(1),提高了运行效率。文章详细讲解了链表的结构定义、方法声明和实现,包括创建新节点、初始化、打印、判断是否为空、插入和删除节点等操作。最后提供了完整的代码示例。
39 0