摘要:
leetcode:669. 修剪二叉搜索树 - 力扣(LeetCode) class Solution { public TreeNode trimBST(TreeNode root, int low, int high) { //和删除差不多,怕删除的节点的左右孩子节点有符合范围的,所以要每次判断 阅读全文
摘要:
leetcode:701. 二叉搜索树中的插入操作 - 力扣(LeetCode) class Solution { public TreeNode insertIntoBST(TreeNode root, int val) {//判断叶子结点,null说明到了,可以赋值。 if(root == nu 阅读全文