Java数据结构之链表实现(单向、双向链表及链表反转)

 更新时间:2021年06月02日 09:47:55   作者:放肆的青春゛つ  
这篇文章主要给大家介绍了关于Java数据结构之链表实现的相关资料,其中包括单向链表、双向链表及链表反转的实现代码,需要的朋友可以参考下

前言

之前学习的顺序表查询非常快,时间复杂度为O(1),但是增删改效率非常低,因为每一次增删改都会元素的移动。可以使用另一种存储方式-链式存储结构。

链表是一种物理存储单元上非连续、非顺序的存储结构。链表由一序列的结点(链表中的每一个元素成为结点)组成。

结点API设计

类名 Node
构造方法 Node(T t,Node next) 创建Node对象
成员变量

T item:存储数据

Node next :指向下一个结点

结点类

public class Node<T>{
    Node next;
    private T item;
 
    public Node(Node next, T item) {
        this.next = next;
        this.item = item;
    }
}

生成链表

public class TestNode {
    public static void main(String[] args) {
        // 生成结点
        Node<Integer> one = new Node<Integer>(null,12);
        Node<Integer> two = new Node<Integer>(null,16);
        Node<Integer> three = new Node<Integer>(null,11);
        Node<Integer> four = new Node<Integer>(null,10);
        //生成链表
        one.next = two;
        two.next = three;
        three.next =four;
    }
}

1、单链表

单向链表是链表的一种,它有多个结点组成每个结点都由一个数据域一个指针组成,数据域用来存储数据指针域用来指向其后结点

链表的头结点数据域不存储数据,指针域指向第一个真正存储数据的结点。

单向链表API设计

类名 LinkList
构造方法 LinkList() :创建LinkList对象
成员变量

private Node head;记录首结点

private int N; 记录链表的长度

成员内部类 private class Node;结点类
成员方法
public void clear() 清空链表
public boolean isEmpty() 判断链表是否为空,是返回true
public int length() 获取链表中的元素个数
public T get(int i) 读取并返回链表中的第i个元素的值

public void insert(T t)

往链表中插入一个元素
public void insert(T t,int i) 在链表的第i位置插入一个值为t的数据元素
public T remove(int i) 删除并返回删除链表中的第i个数据元素
public int indexof(T t) 返回链表中首次出现的指定的数据元素的序号,如不存在,则返回-1

单向链表Java代码实现

package com.ycy.Algorithm.LinkList;
 
 
import java.util.Iterator;
 
/**
 * 链表的head是不可以动的
 * @param <T>
 */
public class LinkList<T> implements Iterable<T>{
 
    private Node head;//头结点,链表的head是不可以动的
    private int N;//结点个数
    public LinkList() {
        this.head = new Node(null,null);
        N = 0;
    }
    /**
     * 结点内部类
     */
    private class Node{
        //存储数据
        T item;
        //下一个结点
        Node next;
        public Node(T item,Node next) {
            this.item = item;
            this.next = next;
        }
 
    }
    /**
     * 清空链表
     */
    public void clear(){
        head.item=null;
        head.next=null;// 头节点next为null就是空链表
        this.N=0;
    }
    /**
     * 判断链表是否为空
     */
    public boolean isEmpty(){
        return this.N==0;
    }
    /**
     * 获取链表的长度
     */
    public int length(){
        return this.N;
    }
    /**
     * 读取链表第i位置的元素值并返回
     */
    public T get(int i){
        //非法性检查
        if(i<0 || i > this.N){
            throw new RuntimeException("位置不合法");
        }
        // n也是指向头结点
        Node n = head;
        for(int index=0; index<i; index++){
            n = n.next;
        }
        return n.item;
    }
    /**
     * 往链表中插入数据t
     */
    public void insert(T t){
        // head不可以移动,不然就无法在找到链表
        // 定义一个临时的Node也指向head的指针就可以通过移动该指针就可以
        Node n = head;
        // 获取尾节点
        while(true){
            // 当刚好就一个节点时(头节点)
            if(n.next == null){
                break;
            }
            n = n.next;
        }
        //当为空表时,就可以插入
        Node node = new Node(t, null);
        n.next =node;
        this.N ++;
    }
 
    /**
     * 在第i位置上插入数据t
     */
    public void insert(T t,int i){
        // 非法性检查
        if(i < 0 || i > this.N){
            throw  new RuntimeException("插入位置❌");
        }
        Node pre = head;
        for(int index=0;index <= i-1; index++){
            pre = pre.next;
        }
        Node current = pre.next;
        //先链接后面结点
        Node newNode = new Node(t,null);
        pre.next = newNode;
        newNode.next = current;
        this.N++;
    }
    /**
     * 移除并返回第i位置的元素值
     */
    public  T remove(int i){
        // 非法性检查
        if(i < 0 || i >this.N){
            throw  new RuntimeException("删除位置有误");
        }
        Node n =head;
        for(int index=0;index <= i-1;index ++){
             n = n.next;
        }
        //要删除的节点
        Node curr = n.next;
        n.next = curr.next;
        this.N--;//结点个数减一
        return curr.item;
    }
    //查找元素t在链表中第一次出现的位置
    public int indexof(T t){
        Node n = head;
        for(int i = 0; n.next != null;i++){
            n =n.next;
            if(n.item.equals(t)){
                return i;
            }
        }
        return -1;
    }
 
    @Override
    public Iterator iterator() {
        return new Iterator() {
            Node n =head;
            @Override
            public boolean hasNext() {
                return n.next !=null;
            }
            @Override
            public Object next() {
                //下移一个指针
                n = n.next;
                return n.item;
            }
        };
    }
}

 补充一点链表的赋值给新的链表后,两个链表是会相会影响的,说白了就是把地址赋值给它了,他们操作是同一块内存的同一个对象。Node n = head;把head赋值给n,现在对n操作也是会影响head的

其中提供遍历方式,实现Iterable接口。

测试代码:

public class test {
    public static void main(String[] args) {
        LinkList<Integer>linkList = new LinkList<>();
        linkList.insert(1);
        linkList.insert(2);
        linkList.insert(4);
        linkList.insert(3);
        linkList.insert(1,2);
        for (Integer i : linkList) {
            System.out.print(i+" ");
        }
    }
}

运行结果:

D:\Java\jdk-12.0.2\bin\java.exe "-javaagent:D:\IDEA\IntelliJ IDEA 2019.1\lib\idea_rt.jar=3542:D:\IDEA\IntelliJ IDEA 2019.1
1 2 1 4 3 

学习完链表还是需要加以练习的,可以在LeetCode上刷题加深理解。

2、双向链表

头插法:新增节点总是插在头部

便于理解可以画图表示

头插法:原图,node是待插入的结点.

插入后图:

关键性代码:

尾插法:新增节点总是插在尾部

原图如下: 

 

插入结点后图如下:

关键性代码:

中间任意位置插入

插入之前的原图: 

 

插入到链表中间位置:

关键性代码:

代码演示:

class MyLinkedList {
    Node head;//定义双向链表的头节点
    Node last;//定义双向链表的尾节点
 
    //打印双向链表
    public void disPlay() {
        Node cur = this.head;
        while (cur != null) {
            System.out.print(cur.val + " ");
            cur = cur.next;
        }
        System.out.println();
    }
 
    //求双向链表的长度(之后addIndex代码会用到)
    public int size() {
        int count = 0;
        Node cur = this.head;
        while (cur != null) {
            count++;
            cur = cur.next;
        }
        return count;
    }
 
    //头插法
    public void addFirst(int data) {
        Node node = new Node(data);//定义一个用作插入的节点
        //1.假设双向链表为空
        if (this.head == null) {
            this.head = node;
            this.last = node;
        } else {
            //2.双向链表不为空的情况下
            //不懂请看上面的图解,就很简单了
            node.next = this.head;
            this.head.prev = node;
            this.head = node;
        }
    }
 
    //尾插法(与头插法类似)
    public void addLast(int data) {
        //定义一个用作插入的节点
        Node node = new Node(data);
        //1.假设双向链表为空
        if (this.head == null) {
            this.head = node;
            this.last = node;
        } else {
            //2.双向链表不为空的情况下
            //不懂请看上面的图解,就很简单了
            last.next = node;
            node.prev = last;
            last = node;
        }
    }
 
    //在任意位置插入
    public void addIndex(int index, int data) {//形参index为插入元素位置,data为插入的数值
        //定义一个用作插入的节点
        Node node = new Node(data);
        Node cur = this.head;//定义一个cur用作遍历双向链表
        //1、判断插入位置的合法性
        if (index < 0 || index > size()) {
            System.out.println("插入位置不合法!!!");
            return;
        }
        //2、假设插入位置为头结点的情况下,即就是头插法
        if (index == 0) {
            addFirst(data);//调用头插法代码
            return;
        }
        //3、假设插入位置为尾结点的情况下,即就是尾插法
        if (index == size()) {
            addLast(data);//调用尾插法代码
            return;
        }
        //4、在中间任意位置的情况下
        while (index != 0) {
            cur = cur.next;
            index--;
        }
        //不懂请看上面的图解,就很简单了
        //核心代码
        node.next = cur;
        node.prev = cur.prev;
        cur.prev = node;
        node.prev.next = node;
    }
}
 
//双向链表的节点结构
class Node {
    int val;
    Node prev;
    Node next;
 
    Node(int val) {
        this.val = val;
    }
}

3、链表反转

public void reverse(){
        if(N==0){
        //当前是空链表,不需要反转
            return;
        }
        reverse(head.next);
}
    /**
     * @param curr 当前遍历的结点
     * @return 反转后当前结点上一个结点
     */
public Node reverse(Node curr){
        //已经到了最后一个元素
        if(curr.next==null){
        //反转后,头结点应该指向原链表中的最后一个元素
          head.next=curr;
          return curr;
        }
       //当前结点的上一个结点
       Node pre=reverse(curr.next);
       pre.next=curr;
       //当前结点的下一个结点设为null
       curr.next=null;
       //返回当前结点
       return curr;
}

总结

到此这篇关于Java数据结构之链表实现的文章就介绍到这了,更多相关Java数据结构链表内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

相关文章

  • 详解Java类型擦除机制

    详解Java类型擦除机制

    Java泛型是JDK 5引入的一个特性,它允许我们定义类和接口的时候使用参数类型,泛型在集合框架中被广泛使用。这篇文章主要介绍了Java类型擦除机制,需要的朋友可以参考下
    2019-07-07
  • 解决IDEA报错war exploded is not valid问题

    解决IDEA报错war exploded is not valid问题

    在使用IntelliJ IDEA时遇到'[projectname]warexploded'无效的问题,可以通过清除项目列表、重新导入项目和配置新的Tomcat来解决,确保在Tomcat配置中,将ApplicationContext修改为仅包含一个'/',这一方法或许能帮助遇到相似问题的开发者
    2024-09-09
  • 利用@Value注解为bean的属性赋值方法总结

    利用@Value注解为bean的属性赋值方法总结

    这篇文章主要介绍了利用@Value注解为bean的属性赋值方法总结,文中有详细的代码示例,对学习@Value注解有一定的参考价值,需要的朋友可以参考下
    2023-05-05
  • Springboot+echarts实现可视化

    Springboot+echarts实现可视化

    这篇文章主要为大家详细介绍了Springboot+echarts实现可视化,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-12-12
  • Java的Hibernate框架中集合类数据结构的映射编写教程

    Java的Hibernate框架中集合类数据结构的映射编写教程

    Hibernate可以将Java中几个内置的集合结构映射为数据库使用的关系模型,下面我们就来看一下Java的Hibernate框架中集合类数据结构的映射编写教程:
    2016-07-07
  • Mybatis-Plus打印sql日志两种方式

    Mybatis-Plus打印sql日志两种方式

    这篇文章主要给大家介绍了关于Mybatis-Plus打印sql日志两种方式,Mybatis-plus是MyBatis增强工具包,用于简化CRUD操作,文中通过示例代码介绍的非常详细,需要的朋友可以参考下
    2023-07-07
  • 详解Java匿名内部类

    详解Java匿名内部类

    这篇文章介绍了Java匿名内部类的实现,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-12-12
  • Java实现多人聊天室的原理与源码

    Java实现多人聊天室的原理与源码

    这篇文章主要给大家介绍了关于Java实现多人聊天室的原理与源码的相关资料,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧
    2021-04-04
  • 解决springboot项目启动报错Error creating bean with name dataSourceScriptDatabaseInitializer问题

    解决springboot项目启动报错Error creating bean with&nb

    这篇文章主要介绍了解决springboot项目启动报错Error creating bean with name dataSourceScriptDatabaseInitializer问题,具有很好的参考价值,希望对大家有所帮助
    2024-03-03
  • MyBatis一对一级联更新问题小结

    MyBatis一对一级联更新问题小结

    日常工作中经常会涉及到一对一级联更新的问题,本文主要介绍了MyBatis一对一级联更新问题小结,具有一定的参考价值,感兴趣的可以了解一下
    2024-01-01

最新评论