leetcode 109. Convert Sorted List to Binary Search Tree【给定有序数组构建二叉树】

Given a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST.

For this problem, a height-balanced binary tree is defined as a binary tree in which the depth of the two subtrees of every node never differ by more than 1.

Example:

Given the sorted linked list: [-10,-3,0,5,9],

One possible answer is: [0,-3,9,-10,null,5], which represents the following height balanced BST:

      0
     / \
   -3   9
   /   /
 -10  5

之前还以为可以一分为二,一次遍历搞定,不仅写乱套了,而且今天晚上才发现根本就不是BST啊!!

其实也没多难……递归算下去就OK

/**
 * 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:
    TreeNode* buildBST(ListNode* head,ListNode* tail) {
        if(head == tail) {
            return NULL;
        }
        if(head->next == tail) {
            TreeNode* t = new TreeNode(head -> val);
            return t;
        }
        ListNode* n = head;
        ListNode* t = head;
        while(t != tail && t->next != tail) {
            n = n -> next;
            t = t -> next -> next;
        }
        TreeNode* m = new TreeNode(n -> val);
        m -> left = buildBST(head , n);
        m -> right = buildBST(n->next ,tail);
        return m;
    }
    TreeNode* sortedListToBST(ListNode* head) {
        return  buildBST(head,NULL);
    }

};

 

全部评论

相关推荐

05-26 22:25
门头沟学院 Java
Java小肖:不会是想叫你过去把你打一顿吧,哈哈哈
点赞 评论 收藏
分享
完美的潜伏者许愿简历...:隐藏信息被你提取出来了,暗示,这就是暗示
点赞 评论 收藏
分享
评论
点赞
收藏
分享

创作者周榜

更多
牛客网
牛客网在线编程
牛客网题解
牛客企业服务