码迷,mamicode.com
首页 > 其他好文 > 详细

Convert Sorted List to Binary Search Tree - LeetCode

时间:2019-03-22 00:16:32      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:sorted   new   tail   img   slow   平衡二叉搜索树   二分   tno   mst   

题目链接

Convert Sorted List to Binary Search Tree - LeetCode

注意点

  • 不要访问空结点
  • 题目要求的是平衡二叉搜索树(也就是AVL树)

解法

解法一:递归,二叉搜索树的中序遍历结果刚好是一个有序数组,有序数组中间的数字刚好是根节点,因此可以用二分的思想来做。不过这道题不像数组可以直接访问中间节点,要用快慢节点的方法。

/**
 * Definition for singly-linked list.
 * struct ListNode {
 *     int val;
 *     ListNode *next;
 *     ListNode(int x) : val(x), next(NULL) {}
 * };
 */
/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    typedef TreeNode* Tnode;
    typedef ListNode* Lnode;
    TreeNode* sortedListToBST(ListNode* head) {
        if(!head) return NULL;
        return sortedListToBST(head,NULL);
    }
    TreeNode* sortedListToBST(Lnode head,Lnode tail) {
        if(head == tail) return NULL;
        Lnode slow = head, fast = head;
        while(fast != tail && fast->next != tail)
        {
            slow = slow->next;
            fast = fast->next->next;
        }
        Tnode n = new TreeNode(slow->val);
        n->left = sortedListToBST(head,slow);
        n->right = sortedListToBST(slow->next,tail);
        return n;
    }
};

技术图片

小结

  • avl的子树高度差不超过1

Convert Sorted List to Binary Search Tree - LeetCode

标签:sorted   new   tail   img   slow   平衡二叉搜索树   二分   tno   mst   

原文地址:https://www.cnblogs.com/multhree/p/10575666.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!