题解 | #删除链表的倒数第n个节点#

删除链表的倒数第n个节点

https://www.nowcoder.com/practice/f95dcdafbde44b22a6d741baf71653f6

思路

参考BM8的思路, 遍历到目标节点前一位,删除目标节点

注意:

  • 代码健壮性的检验
  • length= = n的情况需要拎出来判断

代码

import java.util.*;

/*
 * public class ListNode {
 *   int val;
 *   ListNode next = null;
 * }
 */

public class Solution {
    /**
     *
     * @param head ListNode类
     * @param n int整型
     * @return ListNode类
     */
    public ListNode removeNthFromEnd (ListNode head, int n) {
        //代码健壮性检验
        if (head == null) {
            return null;
        }
        if (n == 0) {
            return head;
        }
        // 定义链表长度
        int listLength = 1;
        // 定义临时指针
        ListNode temp = head;
        // 遍历链表获取长度
        while (temp.next != null) {
            temp = temp.next;
            listLength++;
        }
        // 重置临时指针
        temp = head;
        // 当链表长度小于k时
        if (listLength < n) {
            return null;
        } else if (listLength == n) {
            return head.next;
        }
        // 计算目标节点位置遍历到前一位
        for (int i = 0; i < listLength - n - 1; i++) {
            temp = temp.next;
        }
        // 删除目标节点
        temp.next = temp.next.next;
        return head;
    }
}
全部评论

相关推荐

object3:开始给部分🌸孝子上人生第一课了
点赞 评论 收藏
分享
10-15 16:27
门头沟学院 C++
LeoMoon:建议问一下是不是你给他付钱😅😅
点赞 评论 收藏
分享
11-26 22:34
已编辑
重庆邮电大学 Java
快手 客户端开发 (n+5)k*16 公积金12
牛客895077908号:佬 什么双非硕啊
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务