-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathreverseLinkedList.js
More file actions
38 lines (36 loc) · 999 Bytes
/
reverseLinkedList.js
File metadata and controls
38 lines (36 loc) · 999 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
38
////////////////////////////////////////////////Reverse Linked List/////////////////////////////////////////////
// Given the head of a singly linked list, reverse the list, and return the reversed list.
// Example 1:
// Input: head = [1,2,3,4,5]
// Output: [5,4,3,2,1]
// Example 2:
// Input: head = [1,2]
// Output: [2,1]
// Example 3:
// Input: head = []
// Output: []
/**
* Definition for singly-linked list.
* function ListNode(val, next) {
* this.val = (val===undefined ? 0 : val)
* this.next = (next===undefined ? null : next)
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
const reverseList = function(head) {
if(head === null) return head;
let current = head, prev = null;
while(current !== null){
const next = current.next
current.next = prev;
prev = current;
current = next;
}
return prev;
};
// console.log(reverseList([1,2,3,4,5]));
// console.log(reverseList([1,2]));
// console.log(reverseList([]));