-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path19.删除链表的倒数第n个节点.java
85 lines (81 loc) · 2.19 KB
/
19.删除链表的倒数第n个节点.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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*
* @lc app=leetcode.cn id=19 lang=java
*
* [19] 删除链表的倒数第N个节点
*
* started at 2020-03-05 18:24:36
* almost finished at 2020-03-05 19:03:39
* accomplished at 2020-03-05 20:22:55
*
* https://leetcode-cn.com/problems/remove-nth-node-from-end-of-list/description/
*
* algorithms
* Medium (34.84%)
* Likes: 707
* Dislikes: 0
* Total Accepted: 129.8K
* Total Submissions: 343.7K
* Testcase Example: '[1,2,3,4,5]\n2'
*
* 给定一个链表,删除链表的倒数第 n 个节点,并且返回链表的头结点。
*
* 示例:
*
* 给定一个链表: 1->2->3->4->5, 和 n = 2.
*
* 当删除了倒数第二个节点后,链表变为 1->2->3->5.
*
*
* 说明:
*
* 给定的 n 保证是有效的。
*
* 进阶:
*
* 你能尝试使用一趟扫描实现吗?
*
*/
// @lc code=start
/**
* Definition for singly-linked list. public class ListNode { int val; ListNode
* next; ListNode(int x) { val = x; } }
*
* attention: 虽然报错说没有找到 ListNode,但是提交时不用自己写,上面的说明的内容即是算法需要用到的
*/
class ListNode {
int val;
ListNode next;
ListNode(int x) {
val = x;
}
}
// attention: 上面这个 ListNode 的定义需要在测试和提交时删掉,不然会报错
class Solution {
public ListNode removeNthFromEnd(ListNode head, int n) {
if (n == 0) {
return head;
}
ListNode first = head;
ListNode next = head;
int times = 0;
while (next.next != null && times < n) {
next = next.next;
times++;
}
while (next.next != null) {
first = first.next;
next = next.next;
}
// 使用times进行边界处理
// else 对应 [1] 1 或者 [1,2,3] 3 这种情况
// 因为这种情况下,next 已经指向最后一个结点
// 所以第二个while循环的条件不成立,first 指针不会移动,这样就要删除头节点了,对应下面 else的情况
if (times == n) {
first.next = first.next.next;
return head;
} else {
return first.next;
}
}
}
// @lc code=end