-
Notifications
You must be signed in to change notification settings - Fork 0
/
206.反转链表.js
53 lines (51 loc) · 988 Bytes
/
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
49
50
51
52
53
/*
* @lc app=leetcode.cn id=206 lang=javascript
*
* [206] 反转链表
*
* https://leetcode-cn.com/problems/reverse-linked-list/description/
*
* algorithms
* Easy (70.60%)
* Likes: 1354
* Dislikes: 0
* Total Accepted: 375.6K
* Total Submissions: 529.2K
* Testcase Example: '[1,2,3,4,5]'
*
* 反转一个单链表。
*
* 示例:
*
* 输入: 1->2->3->4->5->NULL
* 输出: 5->4->3->2->1->NULL
*
* 进阶:
* 你可以迭代或递归地反转链表。你能否用两种方法解决这道题?
*
*/
// @lc code=start
/**
* Definition for singly-linked list.
* function ListNode(val) {
* this.val = val;
* this.next = null;
* }
*/
/**
* @param {ListNode} head
* @return {ListNode}
*/
var reverseList = function (head) {
var prev = null;
var node = head;
var next = null;
while (node !== null) {
next = node.next;
node.next = prev;
prev = node;
node = next;
}
return prev;
};
// @lc code=end