zoukankan      html  css  js  c++  java
  • 426. Convert Binary Search Tree to Sorted Doubly Linked List

    Convert a BST to a sorted circular doubly-linked list in-place. Think of the left and right pointers as synonymous to the previous and next pointers in a doubly-linked list.

    Let's take the following BST as an example, it may help you understand the problem better:

     

     

    We want to transform this BST into a circular doubly linked list. Each node in a doubly linked list has a predecessor and successor. For a circular doubly linked list, the predecessor of the first element is the last element, and the successor of the last element is the first element.

    The figure below shows the circular doubly linked list for the BST above. The "head" symbol means the node it points to is the smallest element of the linked list.

     

     

    Specifically, we want to do the transformation in place. After the transformation, the left pointer of the tree node should point to its predecessor, and the right pointer should point to its successor. We should return the pointer to the first element of the linked list.

    The figure below shows the transformed BST. The solid line indicates the successor relationship, while the dashed line means the predecessor relationship.

     

    先通过recursion,inorder traverse得到doubly sorted linked list,再连接首尾

    用dummy node处理corner case,prev从dummy开始

    time: O(n), space: O(logn)

    /*
    // Definition for a Node.
    class Node {
        public int val;
        public Node left;
        public Node right;
    
        public Node() {}
    
        public Node(int _val,Node _left,Node _right) {
            val = _val;
            left = _left;
            right = _right;
        }
    };
    */
    class Solution {
        Node prev = null;
        public Node treeToDoublyList(Node root) {
            if(root == null) {
                return root;
            }
            Node dummy = new Node(0, null, null);
            prev = dummy;
            inorder(root);
            Node head = dummy.right;
            head.left = prev;
            prev.right = head;
            return head;
        }
        
        public void inorder(Node cur) {
            if(cur == null) {
                return;
            }
            inorder(cur.left);
            prev.right = cur;
            cur.left = prev;
            prev = cur;
            inorder(cur.right);
        }
    }
  • 相关阅读:
    wp8 入门到精通
    C# 从入门到精通
    wp8 json2csharp
    wp8 安装.Net3.5
    delphi资源文件制作及使用详解
    delphi弹出选择对话框选择目录SelectDirectory 函数
    delphi 判断WIN8 , WIN8.1 , WIN10 系统版本
    外壳扩展创建快捷方式和获取快捷方式的目标对象
    文本究竟是使用哪种字
    用Delphi创建服务程序
  • 原文地址:https://www.cnblogs.com/fatttcat/p/10182890.html
Copyright © 2011-2022 走看看