-
Notifications
You must be signed in to change notification settings - Fork 0
/
Leetcode-206.js
48 lines (42 loc) · 1004 Bytes
/
Leetcode-206.js
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
/**
* 206. Reverse Linked List
* https://leetcode.com/problems/reverse-linked-list/
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
// iteration
const reverseList = (head) => {
let [prev, current] = [null, head]
while (current) [current.next, prev, current] = [prev, current, current.next]
return prev
};
// recursion
const reverseList = (head, prev = null) => {
if (head === null) return prev
let temp = head.next
head.next = prev
return reverseList(temp, head)
}
// recursion2
const reverseList = (head) => {
if (head.next === null) return head
let last = reverseList(head.next)
head.next.next = head
head.next = null
return last
}
/**
* Reverse a singly linked list.
Example:
Input: 1->2->3->4->5->NULL
Output: 5->4->3->2->1->NULL
Follow up:
A linked list can be reversed either iteratively or recursively. Could you implement both?
*/