美文网首页
2020/7/12 leetcode 206. 反转链表

2020/7/12 leetcode 206. 反转链表

作者: Summer2077 | 来源:发表于2020-07-12 21:31 被阅读0次

    反转一个单链表。

    示例:

    输入: 1->2->3->4->5->NULL
    输出: 5->4->3->2->1->NULL
    

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

    解法1:迭代

    /**
     * Definition for singly-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;
            }
            //循环遍历这链表,每次都讲节点放到reverseHead最前端
            ListNode cur =head;
            ListNode next = null;
            ListNode reverseHead = new ListNode(0);
            while(cur!=null){
                next = cur.next;
                cur.next = reverseHead.next;
                reverseHead.next = cur;
                cur = next;
            }
            //返回链表
            return reverseHead.next;
        }
    }
    

    解法2:迭代

    假设存在链表 1 → 2 → 3 → Ø,我们想要把它改成 Ø ← 1 ← 2 ← 3。

    在遍历列表时,将当前节点的 next 指针改为指向前一个元素。由于节点没有引用其上一个节点,因此必须事先存储其前一个元素。在更改引用之前,还需要另一个指针来存储下一个节点。不要忘记在最后返回新的头引用!

    public ListNode reverseList(ListNode head) {
        ListNode prev = null;
        ListNode curr = head;
        while (curr != null) {
            ListNode nextTemp = curr.next;
            curr.next = prev;
            prev = curr;
            curr = nextTemp;
        }
        return prev;
    }
    

    复杂度分析

    时间复杂度:O(n)O(n),假设 nn 是列表的长度,时间复杂度是 O(n)O(n)。
    空间复杂度:O(1)O(1)。

    解法3:递归

    递归版本稍微复杂一些,其关键在于反向工作。假设列表的其余部分已经被反转,现在我该如何反转它前面的部分?

    public ListNode reverseList(ListNode head) {
        if (head == null || head.next == null) return head;
        ListNode p = reverseList(head.next);
        head.next.next = head;
        head.next = null;
        return p;
    }
    

    复杂度分析

    时间复杂度:O(n)O(n),假设 nn 是列表的长度,那么时间复杂度为 O(n)O(n)。
    空间复杂度:O(n)O(n),由于使用递归,将会使用隐式栈空间。递归深度可能会达到 nn 层。

    相关文章

      网友评论

          本文标题:2020/7/12 leetcode 206. 反转链表

          本文链接:https://www.haomeiwen.com/subject/ofincktx.html