Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

206. 反转链表 #165

Open
zzcyes opened this issue Sep 18, 2020 · 1 comment
Open

206. 反转链表 #165

zzcyes opened this issue Sep 18, 2020 · 1 comment
Assignees

Comments

@zzcyes
Copy link
Owner

zzcyes commented Sep 18, 2020

Title Describe
题目 206. 反转链表
难度

题目

反转一个单链表。

示例:

输入: 1->2->3->4->5->NULL
输出: 5->4->3->2->1->NULL
进阶:
你可以迭代或递归地反转链表。你能否用两种方法解决这道题?
@zzcyes
Copy link
Owner Author

zzcyes commented Sep 18, 2020

题解

方法一

/**
 * Definition for singly-linked list.
 * function ListNode(val) {
 *     this.val = val;
 *     this.next = null;
 * }
 */
/**
 * @param {ListNode} head
 * @return {ListNode}
 */
var reverseList = function(head) {
  let prev = null;
  let cur = head;
  while (cur) {
    let next = cur.next;
    cur.next = prev;
    prev = cur;
    cur = next;
  }
  return prev;
};

zzcyes pushed a commit that referenced this issue Sep 18, 2020
zzcyes pushed a commit that referenced this issue Sep 18, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

2 participants