题目描述

原题链接
给你单链表的头节点 head ,请你反转链表,并返回反转后的链表。
image.png

示例 1:
输入:head = [1,2,3,4,5]
输出:[5,4,3,2,1]
image.png
示例 2:
输入:head = [1,2]
输出:[2,1]

示例 3:
输入:head = []
输出:[]

提示:

  • 链表中节点的数目范围是 [0, 5000]
  • -5000 <= Node.val <= 5000

进阶:链表可以选用迭代或递归方式完成反转。你能否用两种方法解决这道题?

个人解法

Javascript

递归

  1. /*
  2. * @lc app=leetcode.cn id=206 lang=javascript
  3. *
  4. * [206] 反转链表
  5. */
  6. // @lc code=start
  7. /**
  8. * Definition for singly-linked list.
  9. * function ListNode(val, next) {
  10. * this.val = (val===undefined ? 0 : val)
  11. * this.next = (next===undefined ? null : next)
  12. * }
  13. */
  14. /**
  15. * @param {ListNode} head
  16. * @return {ListNode}
  17. */
  18. var reverseList = function (head) {
  19. if (head === null || head.next === null) {
  20. return head;
  21. }
  22. if (head.next.next === null) {
  23. let res = head.next;
  24. head.next.next = head;
  25. head.next = null;
  26. return res;
  27. } else {
  28. let res = reverseList(head.next);
  29. head.next.next = head;
  30. head.next = null;
  31. return res;
  32. }
  33. };
  34. // @lc code=end

数组存储辅助

  1. /*
  2. * @lc app=leetcode.cn id=206 lang=javascript
  3. *
  4. * [206] 反转链表
  5. */
  6. // @lc code=start
  7. /**
  8. * Definition for singly-linked list.
  9. * function ListNode(val, next) {
  10. * this.val = (val===undefined ? 0 : val)
  11. * this.next = (next===undefined ? null : next)
  12. * }
  13. */
  14. /**
  15. * @param {ListNode} head
  16. * @return {ListNode}
  17. */
  18. var reverseList = function (head) {
  19. if (head === null || head.next === null) {
  20. return head;
  21. }
  22. let nodeArr = [];
  23. let temp = head;
  24. while (temp) {
  25. nodeArr.push(temp);
  26. temp = temp.next;
  27. }
  28. let length = nodeArr.length;
  29. for (let i = length - 1; i >= 1; i--) {
  30. nodeArr[i].next = nodeArr[i - 1];
  31. }
  32. nodeArr[0].next = null;
  33. return nodeArr[length - 1];
  34. };
  35. // @lc code=end

Java

其他解法

Java

Javascript