llllmz

导航

669. 修剪二叉搜索树c

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     struct TreeNode *left;
 *     struct TreeNode *right;
 * };
 */
struct TreeNode* trimBST(struct TreeNode* root, int low, int high) {
    if(!root) return NULL; 
    if(root->val >= low && root->val <= high){
        root->left=trimBST(root->left,low,high);
        root->right=trimBST(root->right,low,high);
    }else if( root->val < low){
        return trimBST(root->right,low,high);
    }else if(root->val > high){
        return trimBST(root->left,low,high);
    }
    return root;
}

 

posted on 2024-03-21 17:22  神奇的萝卜丝  阅读(1)  评论(0编辑  收藏  举报