本题思路:既然是二叉搜索树,那么插入就变得比较简单了。因为二叉搜索树的左树节点值都小于根节点值,右树节点值都大于根节点值。
直接将要插入的节点值和根节点进行对比,如果比它小,就往左孩子走,比他大,就往右孩子走。最右直到为空的时候,此时这个位置就是要插入的位置。 再移动的过程中,可以用一个指针来记录父节点的位置。再定义一个标识来判断是走的左孩子还是右孩子。
class Solution {
public TreeNode insertIntoBST(TreeNode root, int val) {
TreeNode node = new TreeNode(val);
TreeNode cur = root;
TreeNode pre = null;
boolean flag = true;
if(cur == null){
return node;
}
while(cur != null){
if(node.val > cur.val){
pre = cur;
cur = cur.right;
flag = true;
}else{
pre = cur;
cur = cur.left;
flag = false;
}
}
if(flag){
pre.right = node;
}else{
pre.left = node;
}
return root;
}
}
class Solution {
public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
if(root == null || root == q || root == p){
return root;
}
TreeNode left = lowestCommonAncestor(root.left,p,q);
TreeNode right = lowestCommonAncestor(root.right,p,q);
if(left != null && right != null){
return root;
}else if(left != null && right == null){
return left;
}else if(left == null && right != null){
return right;
}else{
return null;
}
}
}
本题思路:删除二叉搜索树中的节点,和在 二叉搜索中插入节点差不多。
判断要删的节点的值和当前节点是否一样,如果一样就删除,不一样,就根据节点值大小,往左或者往右移动。只不过在删除的时候,比较麻烦。
class Solution {
public TreeNode deleteNode(TreeNode root, int key) {
if(root == null){
return root;
}
if(key == root.val){
if(root.left == null){
return root.right;
}else if(root.right == null){
return root.left;
}else{
TreeNode cur = root.right;
// 找到该节点右树中,最左边最小的节点
while(cur.left != null){
cur = cur.left;
}
// 让最小节点的 left 等于这个节点
cur.left = root.left;
root = root.right;
}
}
if(key > root.val){
// 当前根节点的右树,为在右树上找到删除的节点后,新构造的树
root.right = deleteNode(root.right,key);
}
if(key < root.val){
// 当前根节点的左树,为在左树上找到删除的节点后,新构造的树
root.left = deleteNode(root.left,key);
}
return root;
}
}
本题思路:利用中序遍历来构造。由于构造的必须是二叉平衡树。所以我们构造的时候,将树均匀分成两份,取中间节点作为根节点,然后更新左中序树,更新右中序树。再递归构造即可!
class Solution {
public TreeNode sortedArrayToBST(int[] nums) {
return travl(nums,0,nums.length);
}
public TreeNode travl(int[] nums, int start, int end){
if(start == end){
return null;
}
int index = (start + end) >> 1;
TreeNode root = new TreeNode(nums[index]);
if(nums.length == 1){
return root;
}
int startleft = start;
int endleft = index;
int startright = index + 1;
int endright = end;
root.left = travl(nums,startleft,endleft);
root.right = travl(nums,startright,endright);
return root;
}
}
本题思路:判断当前节点的值,是否在区间内,如果不在,不能直接删除,因为它的左树或者右数中可能存在符合的节点!
class Solution {
public TreeNode trimBST(TreeNode root, int low, int high) {
if(root == null){
return null;
}
// 如果当前节点值 小于区间
if(root.val < low){
// 此时虽然当前节点值小于 low, 但是它的右树中,可能存在符合区间内的节点,所以不能直接删除当前节点
return trimBST(root.right,low,high);
}
// 如果当前节点值 大于区间
if(root.val > high){
// 此时虽然当前节点值大于 high, 但是它的左树中,可能存在符合区间内的节点,所以也不能直接删除
return trimBST(root.left,low,high);
}
root.left = trimBST(root.left,low,high);
root.right = trimBST(root.right,low,high);
return root;
}
}
本题思路:可以看出,遍历的顺序是 右 根 左, 我们可以用双指针的操作,来完成累加。 定义一个 pre = 0 , cur 指向 8 , 当前的节点值 就等于 cur.val + pre
class Solution {
int pre = 0;
public TreeNode convertBST(TreeNode root) {
if(root == null){
return null;
}
travel(root);
return root;
}
public void travel(TreeNode root){
if(root == null){
return;
}
travel(root.right);
root.val += pre;
pre = root.val;
travel(root.left);
}
}