java数据结构 --- 链表


顺序表适合查找操作,不适合频繁的插入和删除操作
链表的分类可以根据单向或者双向,是否循环,有无头节点,共有2^3,及8种
链表在逻辑上连续,在物理上不连续

1. 初识链表(不带头节点的单向非循环链表)

1.1 链表的创建

public class LinkList {
    class Link{
        int val;
        Link add;
        public Link(int val){
            this.val = val;
        }
    }
    //头节点
    Link link;
    public void creat(){
       Link link1 = new Link(45);
       Link link2 = new Link(49);
       Link link3 = new Link(89);
       Link link4 = new Link(60);
       Link link5 = new Link(90);

        this.link = link1;
        link1.add = link2;
        link2.add = link3;
        link3.add = link4;
        link4.add = link5;
        link5.add = null;
    }
    public static void main(String[] args) {
        LinkList linklist = new LinkList();
        linklist.creat();
    }
}

1.2 链表的功能实现

    public void display(){
    //保持头节点位置不变,定义一个头结点的傀儡,代替头节点跑腿
       Link re = this.link;
      //判断re是否为空
       while(re!= null){
           System.out.print(re.val + " ");
           //使re指向下一个结点
           re = re.add;
       }
    }

需要注意遍历链表时while函数括号中并不是(re.next != null),而是(re != null).

1.2.1 遍历链表

    public int size(){
        Link re = this.link;
        int i = 0;
        while(re != null){
            i++;
            re = re.add;
        }
        return i;
    }

1.2.2 判断链表中是否包含某元素

    public boolean contions(int n){
        Link re = this.link;
        while(re != null){
            if (n == re.val){
                return true;
            }
            re = re.add;
        }
        return false;
    }

1.2.3 头插法

    public void addFirst(int data){
        Link add = new Link(data);
        add.add = this.link;
        link = add;
    }

1.2.4 尾插法

    public void addLast(int data){
        Link re = this.link;
        Link add = new Link(data);
        if(re == null){
            this.link = add;
        }else{
            while(re.add != null){
                re = re.add;
            }
            re.add = add;
        }
    }

1.2.5 任意下标插入

    public void addIndex(int index, int date){
        if (index < 0 | index > size() - 1){
            new IndexwrongException("任意下标插入异常");
        }
        if (index == 0){
            addFirst(date);
            return;
        }
        if(index == size() - 1){
            addLast(date);
            return;
        }
        Link add = new Link(date);
        Link re = this.link;
        int i = 0;
        while(i < index - 1){
            re = re.add;
            i++;
        }
        add.add = re.add;
        re.add = add;
    }

1.2.6 删除元素

public void remove(int date){
        if (link == null){
            return ;
        }
        if(this.link.val == date){
            this.link = this.link.add;
            return;
        }
        Link rem = find(date);
        if(rem == null){
            System.out.println("没有该元素");
        }else{
            rem.add = rem.add.add;
        }
    }
    private Link find(int date){
        Link re = this.link;
        while(re.add != null){
            if (re.add.val == date){
                return re;
            }
            re = re.add;
        }
        return null;
    }


在这里插入图片描述



1.2.7 删除的数字有多个且要全部删除

    public void removeAllKey(int date){
        if (node == null){
            return ;
        }
        Node re1 = node;
        Node re2 = node.next;
        while(re2 != null){
            if(re2.val == date){
                re1.next = re2.next;
                re2 = re2.next;
            }else{
                re1 = re2;
                re2 = re2.next;
            }
        }
        if (node.val == date){
            node = node.next;
        }
    }

注意最后的if函数中不要写成node = re1,因为re1不一定是node.next

1.3 二刷链表代码

package danlianbiao;

class LinkedList{
    static class Node{
        int valu = 0;
        Node next = null;
        public Node(int valu){
            this.valu = valu;
        }
    }
    Node node0 = null;
    int size = 0;
    void creatList(){
        Node node1 = new Node(99);
        Node node2 = new Node(89);
        Node node3 = new Node(67);
        Node node4 = new Node(34);
        node1.next = node2;
        node2.next = node3;
        node3.next = node4;
        node0 = node1;
        this.size = 4;
    }
    void display(){
        Node eg = this.node0;
        while(eg != null){
            System.out.print(eg.valu + "  ");
            eg = eg.next;
        }
        System.out.println();
    }
    void headadd (int val){
        Node node = new Node(val);
        node.next = node0;
        node0 = node;
        this.size++;
    }
    void tailadd(int val){
        Node node = new Node(val);
        Node eg = this.node0;
        if(this.size != 0){
            while(eg.next != null){
                eg = eg.next;
            }
            eg.next = node;
        }else{
            this.node0 = node;
        }
        this.size++;
    }
    void add ( int pos, int val) throws IllegalLocation{
        if (pos < 0 || pos >this.size){
            throw new IllegalLocation("pos位置不合法");
        }else if(pos == 0){
            headadd(val);
        }else if (pos == this.size){
            tailadd(val);
        }else{
            Node node = new Node(val);
            Node eg = this.node0;
            while(pos - 1 != 0){
                eg = eg.next;
                pos--;
            }
            node.next = eg.next;
            eg.next = node;
            this.size++;
        }
    }
    boolean contain(int val){
        Node eg = this.node0;
        while(eg != null){
            if(eg.valu == val)
                return true;
            eg = eg.next;
        }
        return false;
    }
    void remove(int val){
        if(this.node0 == null){
            System.out.println("删除失败, 此链表为空");
            return;
        }
        Node eg = this.node0;
//          if(eg.valu == val){
//              eg = eg.next;
//              this.size--;
//              return;
//        }
//注意:删除的元素为链表中第一个元素时,不能用eg操作,用node0;
        if(this.node0.valu == val){
            this.node0 = this.node0.next;
            this.size--;
            return;
        }
        while(eg.next != null){
            if (eg.next.valu == val){
                eg.next = eg.next.next;
                this.size--;
                return;
            }
            eg = eg.next;
        }
        System.out.println("删除失败,链表中没有该元素");
    }
    void removeall(int val){
        if (this.size == 0){
            System.out.println("删除失败,该链表为空");
            return;
        }
        Node eg1 = this.node0;
        Node eg2 = this.node0.next;
        while(eg2 != null){
            if (eg2.valu == val){
                eg1.next = eg2.next;
                eg2 = eg2.next;
                this.size--;
            }else{
                eg1 = eg2;
                eg2 = eg2.next;
            }
        }
        if(this.node0.valu == val){
            node0 = node0.next;
            this.size--;
        }
    }
    void clean(){
        this.node0 = null;
        this.size = 0;
    }
}



public class Main {
    public static void main(String[] args) {
        LinkedList list = new LinkedList();
        list.creatList();
        //System.out.println("size = " + list.size);
        list.headadd(100);
        list.display();
        list.headadd(100);
        list.tailadd(100);
        list.tailadd(46);
        list.display();
        //System.out.println("size = " + list.size);
        try{
            list.add(0, 100);
            //System.out.println("size = " + list.size);
            list.add(9, 340);
            //System.out.println("size = " + list.size);
            list.add(10,78 );
            //System.out.println("size = " + list.size);
            list.add(4, 100);
            System.out.println("size = " + list.size);
        }catch(IllegalLocation e){
            e.printStackTrace();
        }
        list.display();
        list.remove(450);
        list.display();
        list.remove(78);
        list.display();
        list.remove(100);
        list.display();
        list.remove(1000);
        System.out.println("size = " + list.size);
        list.removeall(100);
        list.display();
        System.out.println("size = " + list.size);
        System.out.println(list.contain(100));
        System.out.println(list.contain(1000));
        //list.disList();
        list.clean();
        list.display();
        System.out.print("size = " + list.size);
    }
}

在这里插入图片描述

2. 链表题目

2.1 旋转链表(置换链表)

//置换单链表
    Node disList(){
        if(this.node0 == null){
            return null;
        }else if (this.node0.next == null){
            return this.node0;
        }else{
            Node eg1 = this.node0.next;
            this.size = 1;
            this.node0.next = null;
            while(eg1 != null){
                Node eg2 = eg1.next;
                headadd(eg1.valu);
                eg1 = eg2;
            }
        }
        return this.node0;
    }

2.2 获取链表中间节点(快慢指针)

    //获取链表中间元素
    Node getmidlist(){
        if (this.node0 == null){
            System.out.println("获取失败,该线性表为空");
            return null;
        }else if (this.size == 1){
            System.out.println("获取成功,该线性表只有一个元素");
            return this.node0;
        }else{
            Node fast = this.node0;
            Node slow = this.node0;
            while((fast != null) && (fast.next != null)){
            //注意这里必须先是fast!=null在前,否则可能会空指针异常
                fast = fast.next.next;
                slow = slow;
            }
            return slow;
        }
    }

2.3 获取倒数第k个节点

    //获取倒数第k个节点
    Node getbackwards(int k){
        if ((k <= 0)){
            System.out.println("获取失败, 要获取位置不合法");
            return null;
        }
        if (this.node0 == null){
            System.out.println("获取失败,链表为空");
        }
        Node fast = this.node0;
        Node slow = this.node0;
        while (fast.next != null){
            while(k - 1 != 0){
                fast = fast.next;
                k--;
                if (fast.next == null){
                    System.out.println("获取失败, 要获取位置不合法");
                    return null;
                }
            }
            slow = slow.next;
            fast = fast.next;
        }
        System.out.println("获取成功");
        return slow;
    }

2.4 有序合并两个有序链表

    Node mergelists(Node node1, Node node2){
        Node newnode = new Node(0);
        Node eg = newnode;
        while((node1 != null) && (node2 != null)){
            if (node1.valu < node2.valu){
                eg.next = node1;
                node1 = node1.next;
                eg = eg.next;

            }else{
                eg.next = node2;
                node2 = node2.next;
                eg = eg.next;
            }
        }
        if (node1 != null){
            eg.next = node1;
        }else{
            eg.next = node2;
        }
        return newnode.next;
    }

2.5 链表分割 (血的教训)

现有一链表的头指针 ListNode* pHead,给一定值x,编写一段代码将所有小于x的结点排在其余结点之前,且不能改变原来的数据顺序,返回重新排列后的链表的头指针。
在这里插入图片描述

public class Partition {
    public ListNode partition(ListNode pHead, int x) {
        // write code here
        if (pHead == null) {
            return null;
        }
        ListNode eg = pHead;
        ListNode ea1 = null;
        ListNode es1 = null;
        ListNode ea2 = null;
        ListNode es2 = null;
        while (eg != null) {
            if (eg.val < x) {
                if (ea1 == null) {
                    ea1 = eg;
                    es1 = eg;
                } else {
                    es1.next = eg;
                    es1 = es1.next;
                }
                eg = eg.next;
            } else {
                if (ea2 == null) {
                    ea2 = eg;
                    es2 = eg;
                } else {
                    es2.next = eg;
                    es2 = es2.next;
                }
                eg = eg.next;
            }
        }
        if (ea1 == null) {
            return ea2;
        }
        es1.next = ea2;
        if (ea2 != null) {
            es2.next = null;
        }
        return ea1;
    }
}

这道题值得注意的细节在于在执行es2.next = null;之前必须判断ea2是不是为空,否则可能会报空指针异常
血的教训

2.6 链表指定区间反转(遍历一次)

一下午的心血
在这里插入图片描述

    public ListNode reverseBetween (ListNode head, int m, int n) {
        if (head == null) {
            return null;
        }
        if (head.next == null) {
            return head;
        }
        if (m == n) {
            return head;
        }
        ListNode eg = head;
        for (int i = 1; i < m - 1; i++) {
            eg = eg.next;
        }
        ListNode eg1 = null;
        if(head.next.next == null){
            eg1 = eg.next;
            eg.next = null;
            eg1.next = eg;
            head = eg1;
            return head;
        }
        if(m == 1){
            eg1 = eg;
        }else{
           eg1 = eg.next;
        }
        ListNode eg2 = eg1.next;
        ListNode eg4 = eg1;
        eg.next = null;
        eg1.next = null;
        while ((n - m) != 0) {
            ListNode eg3 = eg2.next;
            eg2.next = eg1;
            eg1 = eg2;
            eg2 = eg3;
            n--;

        }
        if (m == 1){
            eg4.next = eg2;
            return eg1;
        }
        eg4.next = eg2;
        eg.next = eg1;
        return head;
    }
}

2.7 判断回文链表

在这里插入图片描述

需要注意的点在于
在这里插入图片描述

注意这里判断条件不能写成slow.next != null,而是eg1.next ! null

public class PalindromeList {
    public boolean chkPalindrome(ListNode A) {
        // write code here
        //找中间节点
        if (A == null){
            return false;
        }
        if(A.next == null){
            return true;
        }
        ListNode fast = A;
        ListNode slow = A;
        while((fast != null) && (fast.next != null)){
            fast = fast.next.next;
            slow = slow.next;
        }
        ListNode eg1 = slow.next;
        while(eg1 != null){
        //注意这里判断条件不能写成slow.next != null;
            ListNode eg2 = eg1.next;
            eg1.next = slow;
            slow = eg1;
            eg1 = eg2;
        }
        ListNode eg3 = A;
        while(eg3 != slow){
            if(eg3.val != slow.val){
                return false;
            }
            if (eg3.next == slow){
                return true;
            }
            eg3 = eg3.next;
            slow = slow.next;
        }
        return true;
    }
}

2.8 相交链表

public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
     if(headA == null || headB == null){
         return null;
     }
     ListNode eg1 = headA;
     ListNode eg2 = headB;
    while(eg1 != eg2){
    eg1 = (eg1 == null)? headB: eg1.next;
    eg2 = (eg2 == null)? headA: eg2.next;
     }
     return eg1;
    }
}

2.9 判断是否有环形链表

public class Solution {
    public boolean hasCycle(ListNode head) {
        ListNode fast = head;
        ListNode slow = head;
        while(fast != null && fast.next != null){
             fast = fast.next.next;
             slow = slow.next;
             if (fast == slow){
                 return true;
             }
        }
        return false;
    }
}

2.10 链表中的节点每k个一组翻转

public ListNode reverseKGroup (ListNode head, int k) {
        // write code here
        if (head == null){
            return null;
        }
        //len记录链表长度
        int len = 0;
        //eg用于遍历链表
        ListNode eg = head;
        while (eg != null){
             len++;
             eg = eg.next;
        }
        if (len < k){
        //如果长度小于k,返回当前链表
            return head;
        }
        int num = len / k;
        //ListNode用于标记每一组的第一个节点
        ListNode headeg = head;
        //eg用于记录每一组翻转后的最后一个节点
        eg = head;
        for (int i = 1; i <= num; i++){
        //为每一组的翻转做准备工作
            ListNode eg0 = headeg;
            ListNode eg1 = headeg.next;
            headeg.next = null;
            int egi = k;
            while(egi - 1!= 0){
            //对每一组进行翻转
                egi--;
                ListNode eg2 = eg1.next;
                eg1.next = headeg;
                headeg = eg1;
                eg1 = eg2;
            }
            if (i == 1){
   //移动头节点,使其指向翻转后的第一个节点,只能在第一次翻转时执行一次
                head = headeg;
            }else{
       //连接翻转后的前一组与翻转后的当前组
                eg.next = headeg;
                eg = eg0;
            }
            //连接翻转后的当前组与下一组
            eg0.next = eg1;
            //使headeg始终指向下一组的头节点
            headeg = eg1;
        }
       return head;
    }

2.11 链表中环的入口结点

public class Solution {

    public ListNode EntryNodeOfLoop(ListNode pHead) {
        if (pHead == null){
            return null;
        }
        ListNode fast = pHead, slow = pHead;
        while(fast != null && fast.next != null){
            fast = fast.next.next;
            slow = slow.next;
            if(fast == slow){
                break;
            }
        }
        if (fast == null || fast.next == null){
            return null;
        }
        slow = pHead;
        while (slow != fast){
            slow = slow.next;
            fast = fast.next;
        }
        return slow;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

With Order @!147

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值