forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_206.java
More file actions
37 lines (31 loc) · 931 Bytes
/
_206.java
File metadata and controls
37 lines (31 loc) · 931 Bytes
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
package com.fishercoder.solutions;
import com.fishercoder.common.classes.ListNode;
public class _206 {
public static class Solution1 {
public ListNode reverseList(ListNode head) {
ListNode newHead = null;
while (head != null) {
ListNode next = head.next;
head.next = newHead;
newHead = head;
head = next;
}
return newHead;
}
}
public static class Solution2 {
public ListNode reverseList(ListNode head) {
return reverse(head, null);
}
ListNode reverse(ListNode head, ListNode newHead) {
if (head == null) {
return newHead;
}
ListNode next = head.next;
head.next = newHead;
newHead = head;
head = next;
return reverse(head, newHead);
}
}
}