首页 > 其他 > 详细

【leetcode】Convert Sorted List to Binary Search Tree

时间:2014-06-10 07:17:09      阅读:351      评论:0      收藏:0      [点我收藏+]

问题:

给定一个有序链表,生成对应的平衡二叉搜索树。

分析

实现:

TreeNode *buildTree(ListNode* head, ListNode *end){
        if(head == NULL || head == end)
        return NULL;
        ListNode* fast = head;
        ListNode* slow = head;
        //get the middle 
        //notice: != end, not != NULL
        while(fast != end && fast->next != end){
            fast = fast->next->next;
            slow = slow->next;
        }
        TreeNode *root = new TreeNode(slow->val);
        root->left = buildTree(head, slow);
        root->right = buildTree(slow->next, end);
        return root;
    }
    TreeNode *sortedListToBST(ListNode *head) {
        if(head == NULL) 
        return NULL;
        return buildTree(head, NULL);
    }


【leetcode】Convert Sorted List to Binary Search Tree,布布扣,bubuko.com

【leetcode】Convert Sorted List to Binary Search Tree

原文:http://blog.csdn.net/shiquxinkong/article/details/29590891

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