Recortar un árbol de búsqueda binaria (C ++ recortar árbol de búsqueda binaria)

Ideas de resolución de problemas:

(1) Recurrencia, si el nodo raíz es menor que el límite inferior, solo recorte el subárbol derecho

(2) Si el nodo raíz es mayor que el límite superior, solo recorte el subárbol izquierdo

/**
 * 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* trimBST(TreeNode* root, int low, int high) {
        if(root==NULL) return root;
        if(root->val<low) return trimBST(root->right, low, high);
        if(root->val>high) return trimBST(root->left, low, high);
        
        root->left=trimBST(root->left, low, high);
        root->right=trimBST(root->right, low, high);
        
        return root;
    }
};

 

Supongo que te gusta

Origin blog.csdn.net/coolsunxu/article/details/114639288
Recomendado
Clasificación