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

109 有序链表转二叉搜索树

时间:2019-01-12 15:59:17      阅读:197      评论:0      收藏:0      [点我收藏+]

标签:return   list   code   head   node   treenode   while   ted   nullptr   

TreeNode *BST(ListNode *begin, ListNode *end) {
    if (begin == end)
        return nullptr;
    ListNode *fast = begin, *slow = begin;
    while (fast->next != end) {
        fast = fast->next;
        if (fast->next == end)
            break;
        fast = fast->next;
        slow = slow->next;
    }
    auto *mid = new TreeNode(slow->val);
    mid->left = BST(begin, slow);
    mid->right = BST(slow->next, end);
    return mid;
};

TreeNode *sortedListToBST(ListNode *head) {
    if (head == nullptr)
        return nullptr;
    else if (head->next == nullptr)
        return new TreeNode(head->val);
    return BST(head, nullptr);
}

109 有序链表转二叉搜索树

标签:return   list   code   head   node   treenode   while   ted   nullptr   

原文地址:https://www.cnblogs.com/INnoVationv2/p/10259966.html

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