当前位置:   article > 正文

数据结构-链表(Java实现)_java链表类

java链表类

一、链表的定义

        链表又叫做线性表的链式存储,有一个个节点组成,类似生活中火车车厢一节一节串在一起。链表是一种物理存储结构上非连续存储结构,数据元素的逻辑顺序是通过链表的引用链接次序实现的。

链表中的每个结点包含两部分:一个叫数据域:存储数据元素信息;另一个叫指针域:存储下一个结点的存储地址。

二、链表的种类

        链表根据是否带有头结点,不带头结点,单向或者双向,循环或者非循环可以组成8种情况:

                带头  双向  循环链表          不带头  双向  循环链表

                带头  双向  非循环链表       不带头  双向  非循环链表

                带头  单向  循环链表           不带头  单向  循环链表

                带头  单向  非循环链表        不带头  单向  非循环链表

其中双向是带有两个指针域,一个指针域是指向下个结点的存储地址,另一个指针域指向上一个结点的存储地址。

重点掌握:带头单向非循环链表不带头双向非循环链表

三、不带头单向非循环链表的实现

        (1)创建链表

  1. static class ListNode { //静态内部类
  2. public int value;
  3. public ListNode next; //因为next是指向结点的,所以是ListNode类型
  4. public ListNode(int value) { //实例化结点的时候不知道next指向谁,所以不用next构造
  5. this.value = value;
  6. }
  7. }
  8. //链表的属性,链表的头结点
  9. //不能创建在内部类里,否则成为新结点的头结点
  10. public ListNode head; //null
  11. public void creatList() { //方法执行完后,里面的局部变量node1...都会被回收掉,链表还存在
  12. ListNode node1 = new ListNode(12);
  13. ListNode node2 = new ListNode(23);
  14. ListNode node3 = new ListNode(34);
  15. ListNode node4 = new ListNode(45);
  16. node1.next = node2;
  17. node2.next = node3;
  18. node3.next = node4;
  19. this.head = node1;
  20. }

(2)遍历打印链表元素

        重点:1. 怎么从第一个结点走到下个结点-------head = head.next

                   2. 什么时候算把所有结点遍历完成 --------head==null

  1. public void display() {
  2. ListNode cur = head; //定义一个cur代替head去遍历
  3. while (cur != null) { //指向空就退出循环
  4. System.out.println(cur.value + " ");
  5. cur = cur.next; //从当前结点走到下个结点
  6. }
  7. }

(3)查看关键字key是否在单链表中

  1. public boolean contains(int key) {
  2. ListNode cur = head; //定义一个cur代替head去遍历
  3. while (cur != null) { //循环执行完后cur指向尾结..点的后一个位置,也就是null
  4. if (cur.value == key) {
  5. System.out.println("元素存在");
  6. return true;
  7. }
  8. cur = cur.next;
  9. }
  10. return false;
  11. }

(4)求当前链表有多少个结点

  1. public int size() {
  2. int count = 0;
  3. ListNode cur = head; //定义一个cur代替head去遍历
  4. while (cur != null) {
  5. count++;
  6. cur = cur.next;
  7. }
  8. return count;
  9. }

(5)头插法

  1. public void addFirst(int data) {
  2. ListNode node = new ListNode(data); //创建一个新结点
  3. node.next = this.head; //先让新节点的next指向head,然后head指针走向node
  4. this.head = node;
  5. }

(6)尾插法

  1. public void addLast(int data) {
  2. ListNode node = new ListNode(data); //创建一个新结点
  3. if (head == null) {
  4. head = node; //分两种情况,如果链表是空的
  5. } else {
  6. ListNode cur = head; //定义一个cur代替head去遍历
  7. while (cur.next != null) { //cur.next指向空的时候,就说明是最后一个结点
  8. cur = cur.next;
  9. }
  10. cur.next = node;
  11. }
  12. }

(6)链表的插入

1.先找到cur的位置 : cur先走到Index - 1步

  1. public void addIndex(int index, int data) throws indexException {
  2. //判断index是否合法
  3. if (index < 0 || index > size()) {
  4. throw new indexException("index不合法: " + index);
  5. }
  6. ListNode node = new ListNode(data);
  7. if (head == null) { //链表为空
  8. head = node;
  9. return;
  10. }
  11. //如果索引为0,直接头插法
  12. if (index == 0) {
  13. addFirst(data);
  14. return;
  15. }
  16. //如果索引为链表长度,直接尾插法
  17. if (index == size()) {
  18. addLast(data);
  19. return;
  20. }
  21. //中间插入
  22. ListNode cur = searchPrevIndex(index); //cur指向index前一个位置
  23. node.next = cur.next; //先把要插入的结点node的next指向cur的next,先绑定后面
  24. cur.next = node; //cur的next再指向node,不然会丢失
  25. }

(7) 查看关键字key是否在链表中

  1. public boolean contains(int key) {
  2. ListNode cur = head; //定义一个cur代替head去遍历
  3. while (cur != null) { //循环执行完后cur指向尾结..点的后一个位置,也就是null
  4. if (cur.value == key) {
  5. System.out.println("元素存在");
  6. return true;
  7. }
  8. cur = cur.next;
  9. }
  10. return false;
  11. }

(8) 删除key结点

        因为是单向链表,cur不能走到要删除结点的位置,否则找不到删除结点的前驱,因为链表的删除操作是让删除结点的前驱直接指向删除结点的后继,所以cur要走到要删除结点的前驱即可.

  1. public void remove(int key) {
  2. //链表为空
  3. if (head == null) {
  4. return;
  5. }
  6. //删除的关键字是头结点
  7. if (head.value == key) {
  8. head = head.next; //直接指向头结点的下一位
  9. return;
  10. }
  11. //删除操作
  12. ListNode cur = findPrevKey(key);
  13. if (cur == null) {
  14. System.out.println("没有你要删除的数字");
  15. return;
  16. } else {
  17. cur.next = cur.next.next; //直接指向要删除的下下个结点
  18. }
  19. }
  20. private ListNode findPrevKey(int key) { //找322去 到要删除结点的前驱才能
  21. ListNode cur = head; //定义一个cur代替head去遍历
  22. while (cur.next != null) {
  23. if (cur.next.value == key) {
  24. return cur;
  25. } else {
  26. cur = cur.next;
  27. }
  28. }
  29. return null;
  30. }

(9) 删除所有值为key的节点

  1. public void removeAllKey(int key) {
  2. if (head == null) {
  3. return;
  4. }
  5. while (head.value == key) { //会出现重复要删除的头结点,所以要用循环判断
  6. head = head.next;
  7. return;
  8. }
  9. ListNode cur = head.next; //定义一个cur代替head去遍历
  10. ListNode prev = head; //代表要删除结点的前驱
  11. while (cur != null) {
  12. if (cur.value == key) {
  13. prev.next = cur.next; //这一步cur的前驱直接跳过cur结点,指向cur的后继
  14. cur = cur.next;
  15. } else {
  16. prev = cur;
  17. cur = cur.next;
  18. }
  19. }
  20. }

(10) 求链表的长度

  1. public int size() {
  2. int count = 0;
  3. ListNode cur = head; //定义一个cur代替head去遍历
  4. while (cur != null) {
  5. count++;
  6. cur = cur.next;
  7. }
  8. return count;
  9. }

(11) 清空链表

        当一个对象没有人引用的时候就会被回收掉

  1. //清空
  2. @Override
  3. public void clear() {
  4. head = null; //当一个对象没人引用的时候就会被回收
  5. }

四、链表的优缺点

        优点:
                1、对于频繁插入和删除数据的操作,链表的效率很高
                2、单链表不需要分配存储空间,只要有就可以分配,元素个数也不受限制
        缺点:
                1、在查找数据元素上,时间复杂度为O(N)
                2、链表不是一种随机存储结构,不能随机存取元素。

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/爱喝兽奶帝天荒/article/detail/777330
推荐阅读
相关标签
  

闽ICP备14008679号