Skip to content

Commit e074f00

Browse files
committed
update 206. 反转链表
1 parent 0e0d407 commit e074f00

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

algorithms/reverse-linked-list.js

+4-3
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,17 @@ var reverseList = function (head) {
2727
};
2828
return reverseNode(head, null);
2929

30-
// 2. 迭代
30+
// 2. 双指针
3131

32+
// let temp = null; // 保存 curr 的下一个节点
3233
// let prev = null;
3334
// let curr = head;
3435

3536
// while (curr) {
36-
// let next = curr.next;
37+
// temp = curr.next;
3738
// curr.next = prev;
3839
// prev = curr;
39-
// curr = next;
40+
// curr = temp;
4041
// }
4142

4243
// return prev;

0 commit comments

Comments
 (0)