【代码随想录Day4】链表Part02

24. 两两交换链表中的节点

题目链接/文章讲解/视频讲解: 24. 两两交换链表中的节点
使用虚拟头节点
image.png

/**
 * 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 swapPairs(ListNode head) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode cur = dummy;
        while (cur.next != null && cur.next.next != null) {
            ListNode temp = cur.next;
            cur.next = cur.next.next;
            temp.next = cur.next.next;
            cur.next.next = temp;
            cur = cur.next.next;
        }
        return dummy.next;
    }
}

19.删除链表的倒数第N个节点

题目链接/文章讲解/视频讲解:删除链表的倒数第N个节点

思路一:

第一次 while 循环,计算一共有多少个节点;
第二次 for 循环移动到要删除节点的前一个位置;
cur.next=cur.next.next 删除目标节点

/**
 * 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 removeNthFromEnd(ListNode head, int n) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode cur = dummy;
        int count = 0;
        while (cur.next != null) {
            cur = cur.next;
            count++;
        }
        cur = dummy;
        for (int j = 0; j < count - n; j++) {
            cur = cur.next;
        }
        cur.next = cur.next.next;
        return dummy.next;
    }
}

思路二:双指针

fast 指针先向后移动 n 位;
然后 slow 指针和 fast 指针同时开始移动,直到 fast 移动到末尾;
此时 slow 指针的位置是要删除节点的前一位

/**
 * 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 removeNthFromEnd(ListNode head, int n) {
        ListNode dummy = new ListNode(0);
        dummy.next = head;
        ListNode fast = dummy;
        ListNode slow = dummy;
        for (int i = 0; i < n; i++) {
            fast = fast.next;
        }
        while (fast.next != null) {
            fast = fast.next;
            slow = slow.next;
        }
        slow.next = slow.next.next;
        return dummy.next;
    }
}

面试题 0207.链表相交

题目链接/文章讲解:链表相交
我们求出两个链表的长度,并求出两个链表长度的差值,然后让curA移动到,和curB 末尾对齐的位置,如图:

此时我们就可以比较curA和curB是否相同,如果不相同,同时向后移动curA和curB,如果遇到curA == curB,则找到交点。
注意:最后判断是 curA.next != curB.next,而不是curA.next.val != curB.next.val

/**
 * Definition for singly-linked list.
 * public class ListNode {
 * int val;
 * ListNode next;
 * ListNode(int x) {
 * val = x;
 * next = null;
 * }
 * }
 */
public class Solution {
    public ListNode getIntersectionNode(ListNode headA, ListNode headB) {
        ListNode dummyA = new ListNode(0);
        ListNode dummyB = new ListNode(0);
        dummyA.next = headA;
        dummyB.next = headB;
        ListNode curA = dummyA;
        ListNode curB = dummyB;
        int countA = 0, countB = 0;
        while (curA.next != null) {
            curA = curA.next;
            countA++;
        }
        while (curB.next != null) {
            curB = curB.next;
            countB++;
        }
        curA = dummyA;
        curB = dummyB;
        if (countA - countB > 0) {
            for (int i = 0; i < Math.abs(countA - countB); i++) {
                curA = curA.next;
            }
        } else {
            for (int i = 0; i < Math.abs(countA - countB); i++) {
                curB = curB.next;
            }
        }
        while (curA.next != null) {
            if (curA.next != curB.next) {
                curA = curA.next;
                curB = curB.next;
            } else {
                return curA.next;
            }
        }
        return null;
    }
}

142.环形链表II

题目链接/文章讲解/视频讲解:环形链表II

双指针
用 slow 指针(每次移动一个节点)和 fast 指针(每次移动两个节点)找到相遇点。
**关键点:**头节点到环入口的距离 = 相遇点到环入口的距离(即:x=z)
index1 从头节点出发,index2 从相遇点出发,index1 和 index2 在环入口相遇。

/**
 * Definition for singly-linked list.
 * class ListNode {
 * int val;
 * ListNode next;
 * ListNode(int x) {
 * val = x;
 * next = null;
 * }
 * }
 */
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 index1 = head;
                ListNode index2 = fast;
                while (index1 != index2) {
                    index1 = index1.next;
                    index2 = index2.next;
                }
                return index1;
            }
        }
        return null;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值