-
Notifications
You must be signed in to change notification settings - Fork 29
/
Solution2.java
38 lines (31 loc) · 939 Bytes
/
Solution2.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
package recursion;
/**
* 不使用虚拟头结点
*/
public class Solution2 {
public ListNode removeElements(ListNode head, int val) {
while (head != null && head.val == val) {
// ListNode delNode = head;
// head = head.next;
// delNode = null;
// 在 LeetCode不需要考虑用于内存释放的第一、三步
head = head.next;
}
if (head == null) {
return null;
}
ListNode pre = head;
while (pre.next != null) {
if (pre.next.val == val) {
// ListNode delNode = pre.next;
// pre.next = delNode.next;
// delNode = null;
// 在 LeetCode不需要考虑用于内存释放的第一、三步
pre.next = pre.next.next;
} else {
pre = pre.next;
}
}
return head;
}
}