leetcode链表刷题总结

一. 链表的定义

public class ListNode {
    // 结点的值
    int val;

    // 下一个结点
    ListNode next;

    // 节点的构造函数(无参)
    public ListNode() {
    }

    // 节点的构造函数(有一个参数)
    public ListNode(int val) {
        this.val = val;
    }

    // 节点的构造函数(有两个参数)
    public ListNode(int val, ListNode next) {
        this.val = val;
        this.next = next;
    }
}

在这里插入图片描述

二. 删除元素

203. 移除链表元素

在这里插入图片描述

  1. 虚拟结点 指向头节点
  2. 双指针
class Solution {
    public ListNode removeElements(ListNode head, int val) {
        if (head == null){return null;}
        ListNode dummyHead = new ListNode(-1,head);
        ListNode fast = head; //每个元素都遍历
        ListNode slow = dummyHead;
        while(fast != null){
            if (fast.val == val){
                slow.next = fast.next;
            }
            else{
                slow = fast;
            }
            fast = fast.next;
        }
        return dummyHead.next;
  }
}

二. 反/翻转链表

T206.反转链表

在这里插入图片描述
双指针

class Solution {
    public ListNode reverseList(ListNode head) {
        ListNode pre = null;
        ListNode cur = head;
        ListNode temp = null;
        while (cur != null){
            temp = cur.next;
            cur.next = pre;
            pre = cur;
            cur = temp;
        }
        return pre;
    }
}

25. K 个一组翻转链表 ****

在这里插入图片描述

  • 思路分析
    在这里插入图片描述
  • 代码实现
/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
    public ListNode reverseKGroup(ListNode head, int k) {
        ListNode dummyNode = new ListNode(-1);
        dummyNode.next = head;
        ListNode prev = dummyNode;//指向start的前一个
        ListNode end = dummyNode;//指向反转的最后一个
        while(end.next!=null){
            for(int i=0;i<k&&end!=null;i++){
                end = end.next;
            }
            if(end==null) break;//终止条件
            ListNode start = prev.next;//反转的第一个元素
            ListNode next = end.next;//指向末尾的下一个元素,用于反转后的拼接
            //反转
            end.next = null;//先把该部分断开
            prev.next = reverse(start);
            //反转后的拼接处理
            start.next = next;
            prev = start;
            end = prev;
        }
        return dummyNode.next;
    }
    public ListNode reverse(ListNode head){
        ListNode prev = null;
        ListNode cur = head;
        ListNode temp = null;//保留下一个指向的元素
        while(cur!=null){
            temp = cur.next;
            cur.next = prev;
            prev = cur;
            cur = temp;
        }
        return prev;
    }
}

四. 链表中的环

T142.环形链表Ⅱ

在这里插入图片描述

  1. 判断是否有环:双指针,快指针一步走两个节点,慢指针一步走一个节点,若相等必然有环:
  2. 如何找环:从头结点出发一个指针,从相遇节点 也出发一个指针,这两个指针每次只走一个节点, 那么当这两个指针相遇的时候就是 环形入口的节点。
public class Solution {
    public ListNode detectCycle(ListNode head) {
        ListNode slow = head;
        ListNode fast = head;
        while (fast != null && fast.next != null){
            slow = slow.next;
            fast = fast.next.next;//若有环必然相遇
            if (slow == fast) {//相遇,找入口 让一个节点从相遇处出发 一个从头节点出发
                ListNode cur = fast;
                ListNode prev = head;
                while(cur != prev){
                    cur = cur.next;
                    prev = prev.next;
                }
                return cur;
            }
        }
        return null;
    }
}

02.07/T160 链表相交

在这里插入图片描述

  • 方法一:利用AB两个链表的长度差
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        ListNode curA = headA;
        ListNode curB = headB;
        int lengthA = 0;
        int lengthB = 0;
        while (curA != null){
            lengthA ++ ;
            curA = curA.next;
        }
        while (curB != null){
            lengthB++;
            curB = curB.next;
        }
        curA = headA;
        curB = headB;
        if (lengthB > lengthA){
            int  temp = lengthA;
            lengthA = lengthB;
            lengthB = temp;
            ListNode tempNode = curA;
            curA = curB;
            curB = tempNode;
        }        //交换使A长度始终最长
        int gap = lengthA - lengthB;
        while (gap>0){
            curA = curA.next;
            gap--;
        }//让A指针先走
        while(curA != null){
            if (curA == curB){
                return curA;
            }
            curA = curA.next;
            curB = curB.next;
        }
        return null;
    }
}
  • 方法二:利用双指针,较巧妙
    在这里插入图片描述
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        if(headA == null || headB == null){
            return null;
        }
        ListNode curA = headA;
        ListNode curB = headB;
        while(curA!=curB){
            curA =  curA!=null ? curA.next : headB;
            curB =  curB!=null ? curB.next : headA;
        }
        return curA;
    }
}

五. 合并链表

T23. 合并K个升序链表

在这里插入图片描述

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode() {}
 *     ListNode(int val) { this.val = val; }
 *     ListNode(int val, ListNode next) { this.val = val; this.next = next; }
 * }
 */
class Solution {
//合并两个
    public ListNode mergeKLists(ListNode[] lists) {
        ListNode res = null;
        for(int i = 0;i<lists.length;i++){
            res = mergeTwoList(res,lists[i]);
        }
        return res;
    }   
    public ListNode mergeTwoList(ListNode a,ListNode b){
        if(a==null||b==null){
            return a!=null ? a:b;//出现空的 就返回非空
        }
        ListNode dummy = new ListNode(-1);
        ListNode cur = dummy;
        ListNode pointA = a;
        ListNode pointB = b;
        while(pointA!=null&&pointB!=null){
            if(pointA.val>pointB.val){
                cur.next = pointB;
                pointB = pointB.next;
            }else{
                cur.next = pointA;
                pointA = pointA.next;
            }
            cur = cur.next;
        }
        //可能还有剩下的
        cur.next = pointA != null?pointA:pointB;
        return dummy.next;
    }
}

六. 交换链表

T24.两两交换链表的节点

在这里插入图片描述
画图分析:记住pre为虚拟节点 1号为head 2号为head.next,按三部走即可
在这里插入图片描述

class Solution {
    public ListNode swapPairs(ListNode head) {
        ListNode dummyNode = new ListNode(-1);
        dummyNode.next = head;
        ListNode prev = dummyNode;
        while (prev.next != null && prev.next.next != null){
            //head为1号节点
            ListNode temp = head.next.next;   
            prev.next = head.next; 
            head.next.next = head; 
            head.next = temp;
            prev = prev.next.next;
            head = temp;

        }
        return dummyNode.next;
    }
}

T143. 重排链表

在这里插入图片描述

class Solution {
    public void reorderList(ListNode head) {
        int len=0;
        ListNode cur = head;
        //将所有节点入栈,并记录长度
        Deque<ListNode> stack = new LinkedList<>();
        while(cur!=null){
            stack.push(cur);
            cur = cur.next;
            len++;
        }
        int count = len/2;
        ListNode front = head;
        //第一个指针从前往后遍历,按照题目的意思只需要len/2次操作
        //第二个指针不断从栈中弹出元素
        while(count>0){
            ListNode node = stack.pop();
            ListNode temp = front.next;
            front.next = node;
            node.next = temp;
            front = temp;
            count--;
        }
        //最后的元素必须指向空,否则会出现环
        front.next = null;

    }
}

七. 设计链表

T707.设计链表

在这里插入图片描述

  1. 查:for循环遍历
  2. 增:头、尾、任意位置,头尾在任意位置的基础上修改 (本质就是查询,然后插入)
  3. 删: 查询后删除 无论是删除还是插入,引入一个tempNode记录节点
class ListNode{ //定义类 两个属性 一个构造方法
    int val;
    ListNode next;
    // ListNode (){}
    ListNode(int val){
        this.val = val;
    }
}
    //获取第index个节点的数值,注意index是从0开始的,第0个节点就是头结点
//其实就是在遍历的基础上做点操作
class MyLinkedList {
    int size;
    ListNode head;
    //初始化
    public MyLinkedList() {
        size = 0;
        head = new ListNode(0);
    }
    //查询 
    public int get(int index) {
        if (index < 0 || index >= size){return -1;}
        ListNode cur = head;
        for (int i = 0;i<=index;i++){ //注意等号
            cur = cur.next;
        }
        return cur.val;
    }
    //添加头节点
    public void addAtHead(int val) {
        addAtIndex(0,val);
    }
    public void addAtTail(int val) {
        addAtIndex(size,val);
    }
    //增加元素
    public void addAtIndex(int index, int val) {
        if (index > size){return;}
        if (index < 0){index=0;}
        ListNode newNode = new ListNode(val);
        size++;//调整size
        //找到第index-1个节点,用temp变量记录
        ListNode temp = head;
        for (int i = 0;i<index;i++){
            temp = temp.next;
        }
        // 改动 
        newNode.next = temp.next;
        temp.next = newNode;
    }
    //删除
    public void deleteAtIndex(int index) {
        if (index >= size || size < 0){return;}
        size--;
        if (index == 0){
            head = head.next;
            return;
        }
        ListNode temp = head;
        for (int i = 0; i<index;i++){
            temp = temp.next;
        }
        temp.next = temp.next.next;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值