首页 > 其他 > 详细

109. Convert Sorted List to Binary Search Tree

时间:2018-08-25 23:58:43      阅读:378      评论:0      收藏:0      [点我收藏+]

和 148. Sort List 一样的思路,需要把链表一分为二,利用快慢指针即可。

需要注意的是,写完一定要 两个节点 三个节点 代入几个 test case 检查一下,非常容易出错。下面做法是把最后slow的位置作为 root,递归左半边和右半边。

时间复杂度 O(nlogn) 空间复杂度 O(h)

class Solution {
public:
    TreeNode* sortedListToBST(ListNode* head) {
        return buildBST(head);
    }
    
    TreeNode *buildBST(ListNode *head){ // mid as root
        if (head==NULL) return NULL;
        if (head->next==NULL) return new TreeNode(head->val);
        
        ListNode *slow=head, *fast=head, *prev;
        while (fast!=NULL && fast->next!=NULL){
            fast = fast->next->next;
            prev = slow;
            slow = slow->next;
        }
        prev->next = NULL;
        ListNode *mid=slow;
        TreeNode *root=new TreeNode(mid->val);
        root->left  = buildBST(head); 
        root->right = buildBST(mid->next);
        return root;
    }
};

 

109. Convert Sorted List to Binary Search Tree

原文:https://www.cnblogs.com/hankunyan/p/9535805.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!