文章详情

短信预约-IT技能 免费直播动态提醒

请输入下面的图形验证码

提交验证

短信预约提醒成功

Java数据结构之双端链表原理与实现方法

2023-05-30 23:43

关注

本文实例讲述了Java数据结构之双端链表原理与实现方法。分享给大家供大家参考,具体如下:

一、概述:

什么时双端链表:

链表中保持这对最后一个连点引用的链表

从头部插入

要对链表进行判断,如果为空则设置尾节点为新添加的节点

从尾部进行插入

如果链表为空,则直接设置头节点为新添加的节点,否则设置尾节点的后一个节点为新添加的节点

从头部删除

判断节点是否有下个节点,如果没有则设置节点为null

二、具体实现

public class FirstLastLinkList {  //头  private Node first;  //尾  private Node last;  public FirstLastLinkList(){    first = null;    last = null;  }    public void insertFirst(long value){    Node newNode = new Node(value);    if (first == null) {      last = newNode;    }else {      //把first节点往下移动      newNode.next = first;    }    //把插入的节点作为新的节点    first = newNode;  }    public void insertLast(long value){    Node newNode = new Node(value);    if (first == null) {      first = newNode;    }else {      last.next = newNode;    }    //把最后个节点设置为最新的节点    last = newNode;  }  public boolean isEmpty(){    return first == null;  }    public Node deleteFirst(){    if (first == null) {      throw new RuntimeException("链表数据不存在");    }    if (first.next == null) {      last = null;    }    Node temp = first;    first = temp.next;    return temp;  }  public Node deleteByKey(long key){    Node current = first;    Node last = first;    while(current.data != key){      if (current.next == null) {        System.out.println("没找到节点");        return null;      }      last = current;      current = current.next;    }    if (current == first) {      //return deleteFirst();      //指向下个就表示删除第一个      first = first.next;    }else {      last.next = current.next;    }    return current;  }    public void display(){    if (first == null) {      //throw new RuntimeException("链表数据不存在");      return;    }    Node current = first;    while(current != null){      current.display();      current = current.next;    }    System.out.println("---------------");  }    public Node findByValue(long value){    Node current = first;    while(current != null){      if (current.data != value) {        current = current.next;      }else {        break;      }    }    if (current == null) {      System.out.println("没找到");      return null;    }    return current;  }    public Node findByKey(long key) {    Node current = first;    while (current.data != key) {      if (current.next == null) {        System.out.println("没找到");        return null;      }      current = current.next;    }    return current;  }    public Node findByPosition(int position){    Node current = first;    //为什么是position - 1,因为要使用遍历,让current指向下一个, 所以position - 1的下个node就是要找的值    for (int i = 0; i < position - 1 ; i++) {      current = current.next;    }    return current;  }  public static void main(String[] args) {    FirstLastLinkList linkList = new FirstLastLinkList();    linkList.insertFirst(21);    linkList.insertFirst(22);    linkList.insertFirst(23);    linkList.insertLast(24);    linkList.insertLast(25);    linkList.insertLast(26);    linkList.insertLast(27);    linkList.display();    System.out.println("---查找-------------------------------------");    linkList.findByKey(25).display();    System.out.println("--删除first-------------------------------------");    //linkList.deleteFirst().display();    ///linkList.deleteFirst().display();    //linkList.deleteFirst().display();    //linkList.deleteFirst().display();    System.out.println("-删除指定值---------------------------------------");    linkList.deleteByKey(27).display();    linkList.deleteByKey(21).display();    System.out.println("----------------------------------------");    linkList.display();  }}

免责声明:

① 本站未注明“稿件来源”的信息均来自网络整理。其文字、图片和音视频稿件的所属权归原作者所有。本站收集整理出于非商业性的教育和科研之目的,并不意味着本站赞同其观点或证实其内容的真实性。仅作为临时的测试数据,供内部测试之用。本站并未授权任何人以任何方式主动获取本站任何信息。

② 本站未注明“稿件来源”的临时测试数据将在测试完成后最终做删除处理。有问题或投稿请发送至: 邮箱/279061341@qq.com QQ/279061341

软考中级精品资料免费领

  • 历年真题答案解析
  • 备考技巧名师总结
  • 高频考点精准押题
  • 资料下载
  • 历年真题
  • 2024年上半年信息系统项目管理师第二批次真题及答案解析(完整版)

    难度     813人已做
    查看
  • 【考后总结】2024年5月26日信息系统项目管理师第2批次考情分析

    难度     354人已做
    查看
  • 【考后总结】2024年5月25日信息系统项目管理师第1批次考情分析

    难度     318人已做
    查看
  • 2024年上半年软考高项第一、二批次真题考点汇总(完整版)

    难度     435人已做
    查看
  • 2024年上半年系统架构设计师考试综合知识真题

    难度     224人已做
    查看

相关文章

发现更多好内容

猜你喜欢

AI推送时光机
咦!没有更多了?去看看其它编程学习网 内容吧
首页课程
资料下载
问答资讯