LeetCode 206. 反转链表

Posted jianzha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 206. 反转链表相关的知识,希望对你有一定的参考价值。

package 链表;

/**
 * https://leetcode-cn.com/problems/reverse-linked-list/
 * 206. 反转链表
 *
 * 解题思路 :使用给定节点的后一个节点的值覆盖给定节点的值,然后删除下一个节点
 */
public class _206_Reverse_Linked_List {

    public class ListNode {
        int val;
        ListNode next;

        ListNode(int x) {
            val = x;
        }
    }

    /**
     * 迭代
     */

    class Solution {
        public ListNode reverseList(ListNode head) {
            if (head == null || head.next == null) {
                return head;
            }
            ListNode newHead = null;
            while (head != null) {
               ListNode tmp = head.next;
               head.next = newHead;
               newHead = head;
               head = tmp;
            }
            return newHead;
        }
    }

    /**
     * 递归
     *
     * @param head
     * @return
     */
    public ListNode reverseList(ListNode head) {
        // head == null 一定要写在head.next前面
        if (head == null || head.next == null) {
            return head;
        }

        ListNode newHead = reverseList(head.next);
        head.next.next = head;
        head.next = null;
        return newHead;
    }
}

以上是关于LeetCode 206. 反转链表的主要内容,如果未能解决你的问题,请参考以下文章

剑指offerJZ15——反转链表。leetcode206.反转链表

LeetCode #206 链表反转

206. 反转链表

206. 反转链表

leetcode_数据结构_链表_206反转链表(重点:递归)

206. 反转链表(递归)