leetcode 654 最大二叉树

简介: leetcode 654 最大二叉树

最大二叉树

bbd49ed066d048ba8eddcb989f1e6c9b.png52ff3d2e919a4f259b6d7aa55d246816.png

vector的最大值最小值

  • 最大值
auto max_val =  max_element(nums.begin() , nums.end());
cout<<"最大值"<<*max_val<<"最大值下标"<<max_val - nums.begin()<<endl;
  • 最小值
auto min_val =  min_element(nums.begin() , nums.end());
cout<<"最小值"<<*min_val <<"最小值下标"<<min_val - nums.begin()<<endl;

递归法

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    TreeNode* get_big_tree(vector<int>& nums)
    {
        if(nums.size() == 0) return nullptr;
        TreeNode* root = new TreeNode;
        auto max_val =  max_element(nums.begin() , nums.end());
        root->val = *max_val;
        // cout<<*max_val<<' '<<max_val - nums.begin()<<endl;
        vector<int> left_nums(nums.begin() ,   max_val );
        vector<int> right_nums(  max_val  + 1 , nums.end());
        root->left = get_big_tree(left_nums);
        root->right = get_big_tree(right_nums);
        return root;
    }
    TreeNode* constructMaximumBinaryTree(vector<int>& nums) {
        if(nums.size() == 0) return nullptr;
        return get_big_tree(nums);
    }
};

二刷

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode() : val(0), left(nullptr), right(nullptr) {}
 *     TreeNode(int x) : val(x), left(nullptr), right(nullptr) {}
 *     TreeNode(int x, TreeNode *left, TreeNode *right) : val(x), left(left), right(right) {}
 * };
 */
class Solution {
public:
    TreeNode* track_back(vector<int>& nums)
    {
        if(nums.size()==0) return nullptr;
        int max_num = 0;
        for(int i=0 ; i<nums.size();i++)
            if( nums[i] > nums[max_num] ) max_num = i;
        TreeNode* root = new TreeNode(nums[max_num]);
        if(nums.size() ==1 ) return root;
        vector<int> leftNums(nums.begin() , nums.begin() + max_num );
        vector<int> rightNums(nums.begin() + max_num +1 , nums.end());
        root->left =  track_back(leftNums);
        root->right = track_back(rightNums);
        return root;
    }
    TreeNode* constructMaximumBinaryTree(vector<int>& nums) {
        TreeNode* root = track_back(nums);
        return root;
    }
};
相关文章
|
3月前
|
Python
【Leetcode刷题Python】剑指 Offer 32 - III. 从上到下打印二叉树 III
本文介绍了两种Python实现方法,用于按照之字形顺序打印二叉树的层次遍历结果,实现了在奇数层正序、偶数层反序打印节点的功能。
57 6
|
1月前
【LeetCode 31】104.二叉树的最大深度
【LeetCode 31】104.二叉树的最大深度
19 2
|
1月前
【LeetCode 29】226.反转二叉树
【LeetCode 29】226.反转二叉树
16 2
|
1月前
【LeetCode 28】102.二叉树的层序遍历
【LeetCode 28】102.二叉树的层序遍历
15 2
|
1月前
【LeetCode 43】236.二叉树的最近公共祖先
【LeetCode 43】236.二叉树的最近公共祖先
19 0
|
1月前
【LeetCode 38】617.合并二叉树
【LeetCode 38】617.合并二叉树
14 0
|
1月前
【LeetCode 37】106.从中序与后序遍历构造二叉树
【LeetCode 37】106.从中序与后序遍历构造二叉树
17 0
|
1月前
【LeetCode 34】257.二叉树的所有路径
【LeetCode 34】257.二叉树的所有路径
17 0
|
1月前
【LeetCode 32】111.二叉树的最小深度
【LeetCode 32】111.二叉树的最小深度
16 0
|
3月前
|
存储 算法
二叉树进阶-学会层序遍历助你一次刷完leetcode10道题
文章深入探讨了二叉树的层序遍历方法,并展示了如何通过队列实现层序遍历的算法逻辑,同时指出掌握层序遍历技巧可以帮助解决LeetCode上的多道相关题目。
二叉树进阶-学会层序遍历助你一次刷完leetcode10道题