其他分享
首页 > 其他分享> > leetcode-998. 最大二叉树 II

leetcode-998. 最大二叉树 II

作者:互联网

998. 最大二叉树 II

图床:blogimg/刷题记录/leetcode/998/

刷题代码汇总:https://www.cnblogs.com/geaming/p/16428234.html

题目

image-20220830174227121

思路

看到树就要想到递归。

解法

/**
 * 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* insertIntoMaxTree(TreeNode* root, int val) {
        if (root == nullptr || root->val < val) {
            return new TreeNode(val, root, nullptr);
        }
        root->right = insertIntoMaxTree(root->right, val);
        return root;
    }
};

补充

标签:right,TreeNode,val,nullptr,II,二叉树,root,leetcode,left
来源: https://www.cnblogs.com/geaming/p/16640496.html