Java链表中倒数第k个节点、删除链表中倒数第N个节点(快慢指针)

剑指offer 19.删除链表中倒数第N个节点
在这里插入图片描述

解题思路1:

class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode fast = head, slow = head;
        for(int i = 0; i < n; i++){
            fast = fast.next;
        }
        if(fast == null){
            return head.next;
        }
        while(fast.next != null){
            fast = fast.next;
            slow = slow.next;
        }
        slow.next = slow.next.next;
        return head;
    }
}

解题思路2

class Solution {
    public ListNode removeNthFromEnd(ListNode head, int n) {
        ListNode tmp = new ListNode(0, head);
        int len = 0;
        while(tmp.next != null){
            len++;
            tmp = tmp.next;
        }
        ListNode node = new ListNode(0, head);
        int count = 1;
        while(true){
            if(n == len){
                node.next = head.next;
                break;
            }else if(count == len - n){
                head.next = head.next.next;
                break;
            }
            head = head.next;
            count++;
        }
        return node.next;
    }
}

剑指offer 22.链表中倒数第k个节点
在这里插入图片描述

解题思路1
快慢指针
让快指针先走k步, 当fast = null时, slow指针刚好指向链表中倒数第k个节点

class Solution {
    public ListNode getKthFromEnd(ListNode head, int k) {
        ListNode fast = head, slow = head;
        for(int i = 1; i <= k; i++){
            fast = fast.next;
        }
        while(fast != null){
            fast = fast.next;
            slow = slow.next;
        }
        return slow;
    }
}

解题思路2:
遍历链表, 统计链表的长度count
链表中倒数第k个节点 = 从头开始遍历count - k + 1个节点处

class Solution {
    public ListNode getKthFromEnd(ListNode head, int k) {
        if(head == null && head.next == null){
            return head;
        }
        int count = 0;
        ListNode p = head;
        while(p.next != null){
            count++;
            p = p.next;
        }
        for(int i = 1; i <= count - k + 1; i++){
            head = head.next;
        }
        return head;
    }
}
//或者令指针p为傀儡节点
class Solution {
    public ListNode getKthFromEnd(ListNode head, int k) {
        if(head == null && head.next == null){
            return head;
        }
        int count = 0;
        ListNode p = new ListNode(0, head);
        while(p.next != null){
            count++;
            p = p.next;
        }
        for(int i = 1; i <= count - k; i++){
            head = head.next;
        }
        return head;
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值