Fork me on GitHub

leetcode——[019]Remove Nth Node From End of List删除链表倒数第N个节点

题目

给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。

示例:

1
2
3
给定一个链表: 1->2->3->4->5, 和 n = 2.

当删除了倒数第二个节点后,链表变为 1->2->3->5.

说明:

给定的 n 保证是有效的。

进阶:

你能尝试使用一趟扫描实现吗?

Given a linked list, remove the n-th node from the end of list and return its head.

Example:

1
2
3
Given linked list: 1->2->3->4->5, and n = 2.

After removing the second node from the end, the linked list becomes 1->2->3->5.

Note:

Given n will always be valid.

Follow up:

Could you do this in one pass?

解题方法

题目要求一趟扫描实现,可以使用双指针,cur指向当前访问到的节点,要删除倒数第n个节点,先从第一个节点遍历到第n + 1个节点。如果链表只有n个节点,则cur为空,则直接返回头结点的下一个节点head.next;如果cur不为空,则说明不止n个节点,这时使用一个新的指针pre指向第一个结点,这样pre与cur刚好相距n个节点,循环遍历到cur指向链表尾节点,则pre指向了要删除的节点的前一个节点,pre.next = pre.next.next实现删除倒数第n个节点。这段代码跑了10ms,超过了95.16%的Java提交。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode(int x) { val = x; }
* }
*/
class Solution {
// Method_01 10ms 95.16%
public ListNode removeNthFromEnd(ListNode head, int n) {
ListNode cur = head; //遍历指针
while (n-- > 0) {
cur = cur.next;
}
if (cur == null) { // 如果已经为链表尾节点,直接返回第二个节点
return head.next;
}
ListNode pre = head; // 与cur相距n个节点
while (cur.next != null) { // 循环至cur指向链表尾节点
cur = cur.next;
pre = pre.next;
}
pre.next = pre.next.next; // 删除目标节点

return head; // 返回头结点
}
}
BJTU-HXS wechat
海内存知己,天涯若比邻。