leetcode中等669修剪二叉搜索树
Posted qq_40707462
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode中等669修剪二叉搜索树相关的知识,希望对你有一定的参考价值。
class Solution {
public TreeNode trimBST(TreeNode root, int low, int high) {
if(root==null) return null;
if(root.val<low) {
TreeNode rnode=trimBST(root.right,low,high);
return rnode;
}
if(root.val>high){
TreeNode lnode=trimBST(root.left,low,high);
return lnode;
}
root.left=trimBST(root.left,low,high);
root.right=trimBST(root.right,low,high);
return root;
}
}
以上是关于leetcode中等669修剪二叉搜索树的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode 669. 修剪二叉搜索树(Trim a Binary Search Tree)