-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreverse-linked-list.js
95 lines (85 loc) · 1.94 KB
/
reverse-linked-list.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
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
86
87
88
89
90
91
92
93
94
95
/**
* Source: https://leetcode.com/problems/reverse-linked-list/
* Tags: [Linked List]
* Level: Easy
* Title: Reverse Linked List
* Auther: @imcoddy
* Content: Reverse a singly linked list.
*
* click to show more hints.
*
* Hint:
* A linked list can be reversed either iteratively or recursively. Could you implement both?
*/
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
var util = require('./util.js');
/**
* @param {ListNode} head
* @return {ListNode}
*/
//TODO add recursive solution
/**
* Memo:
* Runtime: 122ms
* Tests: 27 test cases passed
* Rank: NA
*/
var reverseList = function(head) {
var dummy = new ListNode(null);
var p = head;
while (p) {
var q = p.next;
p.next = dummy.next;
dummy.next = p;
p = q;
}
return dummy.next;
};
/**
* Memo:
* Complex: O(n)
* Runtime: 128ms
* Tests: 27 test cases passed
* Rank: S
* Updated: 2015-06-15
*/
var reverseList = function(head) {
var dummy = new ListNode(null);
var p = head;
while (p) {
var q = p.next;
p.next = dummy.next;
dummy.next = p;
p = q;
}
return dummy.next;
};
var reverseList = function(head) {
var dummy = new ListNode(null);
while (head) {
var next = head.next;
head.next = dummy.next;
dummy.next = head;
head = next;
}
return dummy.next;
};
function ListNode(val) {
this.val = val;
this.next = null;
}
var should = require('should');
console.time('Runtime');
var list = util.arrayToLinkList([1, 2, 3, 4, 5]);
util.linkListToArray(reverseList(list)).should.containDeepOrdered([5, 4, 3, 2, 1]);
list = util.arrayToLinkList([]);
util.linkListToArray(reverseList(list)).should.containDeepOrdered([]);
list = util.arrayToLinkList([1]);
util.linkListToArray(reverseList(list)).should.containDeepOrdered([1]);
console.timeEnd('Runtime');