首页 > 其他 > 详细

leetcode 669. 修剪二叉搜索树(Trim a Binary Search Tree)

时间:2019-03-27 10:44:32      阅读:157      评论:0      收藏:0      [点我收藏+]

题目描述:

给定一个二叉搜索树,同时给定最小边界L 和最大边界 R。通过修剪二叉搜索树,使得所有节点的值在[L, R]中 (R>=L) 。你可能需要改变树的根节点,所以结果应当返回修剪好的二叉搜索树的新的根节点。

示例 1:

输入: 
    1
   /   0   2

  L = 1
  R = 2

输出: 
    1
             2

示例 2:

输入: 
    3
   /   0   4
       2
   /
  1

  L = 1
  R = 3

输出: 
      3
     / 
   2   
  /
 1

解法:

/**
 * Definition for a binary tree node.
 * struct TreeNode {
 *     int val;
 *     TreeNode *left;
 *     TreeNode *right;
 *     TreeNode(int x) : val(x), left(NULL), right(NULL) {}
 * };
 */
class Solution {
public:
    TreeNode* trimBST(TreeNode* root, int L, int R) {
        if(!root){
            return root;
        }else{
            // cout<<root->val<<endl;
            if(root->val < L){
                return trimBST(root->right, L, R);
            }else if(root->val > R){
                return trimBST(root->left, L, R);
            }else{
                root->left = trimBST(root->left, L, R);
                root->right = trimBST(root->right, L, R);
                return root;
            }
        }
    }
};

leetcode 669. 修剪二叉搜索树(Trim a Binary Search Tree)

原文:https://www.cnblogs.com/zhanzq/p/10605855.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!