669.修建二叉搜索树

在这里插入图片描述

递归杀我

/**
 * 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:
 enum Flag { Left, Right };
 TreeNode* trimBST(TreeNode* root, int L, int R) {
  if (!root) return root;
  if (root->val < L) return trimBST(root->right, L, R);
  else if (root->val > R) return trimBST(root->left, L, R);
  root->left = trimBST(root->left, L, R);
  root->right = trimBST(root->right, L, R);
  return root;
 }
};
发布了90 篇原创文章 · 获赞 7 · 访问量 2170

猜你喜欢

转载自blog.csdn.net/weixin_43784305/article/details/103092973