LeetCode 第18题 删除链表的倒数第N个节点
Posted _colorful
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 第18题 删除链表的倒数第N个节点相关的知识,希望对你有一定的参考价值。
/*
19. 删除链表的倒数第N个节点
给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。
示例:
给定一个链表: 1->2->3->4->5, 和 n = 2.
当删除了倒数第二个节点后,链表变为 1->2->3->5.
说明:
给定的 n 保证是有效的。
*/
/*
Definition for singly-linked list.
public class ListNode{
int val; ListNode next;
ListNode(int x) { val = x; }
}
*/
/*
思路:双指针法. 参考官方题解 : https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/solution/
*/
1 class ListNode17 {
2
3 int val;
4 ListNode17 next;
5
6 ListNode17(int x) {
7 val = x;
8 }
9 }
10
11
12 class Solution19 {
13
14 public ListNode removeNthFromEnd(ListNode head, int n) {
15 if (head == null || n < 1) {
16 return null;
17 }
18 ListNode dummy = new ListNode(0);
19 ListNode high = dummy;
20 ListNode low = dummy;
21 dummy.next = head;
22 for (int i = 0; i < n && high != null; i++) {
23 high = high.next;
24 }
25 if (high == null) {
26 return null;
27 }
28 while (high.next != null) {
29 low = low.next;
30 high = high.next;
31 }
32 low.next = low.next.next;
33 return dummy.next;
34 }
35 }
以上是关于LeetCode 第18题 删除链表的倒数第N个节点的主要内容,如果未能解决你的问题,请参考以下文章
Leetcode练习(Python):链表类:第19题:删除链表的倒数第N个节点:给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。说明: 给定的 n 保证是有效的。
LeetCode Java刷题笔记—19. 删除链表的倒数第 N 个结点
精选力扣500题 第53题 LeetCode 19. 删除链表的倒数第 N 个结点c++/java详细题解