当前位置:   article > 正文

day21-二叉树part08

day21-二叉树part08
235. 二叉搜索树的最近公共祖先 

        相对于 二叉树的最近公共祖先 本题就简单一些了,因为 可以利用二叉搜索树的特性无需全部遍历。特点:当前节点在p,q节点之前则必为最近公共祖先

  1. class Solution {
  2. public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
  3. if(root == null){
  4. return root;
  5. }
  6. //当前节点大于p,q节点值往当前节点左子树遍历
  7. if(root.val > p.val && root.val > q.val){
  8. TreeNode left = lowestCommonAncestor(root.left,p,q);
  9. if(left != null){
  10. return left;
  11. }
  12. }
  13. //当前节点小于p,q节点值往当前节点右子树遍历
  14. if(root.val < q.val && root.val < p.val){
  15. TreeNode right = lowestCommonAncestor(root.right,p,q);
  16. if(right != null){
  17. return right;
  18. }
  19. }
  20. //如果当前节点值在两个节点值中间这就是最近公共祖先
  21. if(root.val > p.val && root.val < q.val){
  22. return root;
  23. }
  24. return root;
  25. }
  26. }

迭代法:

  1. class Solution {
  2. public TreeNode lowestCommonAncestor(TreeNode root, TreeNode p, TreeNode q) {
  3. while(root != null){
  4. //p,q节点都在左
  5. if(root.val > p.val && root.val > q.val){
  6. root = root.left;
  7. //p,q节点都在右
  8. }else if(root.val < q.val && root.val < p.val){
  9. root = root.right;
  10. //当前节点在p,q中间
  11. }else{
  12. return root;
  13. }
  14. }
  15. return root;
  16. }
  17. }

 701.二叉搜索树中的插入操作  

思路:只需要在叶子节点上可以找到我们要插入的新节点位置,向上放回新节点给上一个节点进行操作

通过递归函数返回值完成了新加入节点的父子关系赋值操作了,下一层将加入节点返回,本层用root->left或者root->right将其接住

  1. class Solution {
  2. public TreeNode insertIntoBST(TreeNode root, int val) {
  3. //递归终止条件 递归到叶子节点 创建新节点返回给上一个节点
  4. if(root == null){
  5. return new TreeNode(val);
  6. }
  7. //当前节点值大于val 将新节点插入当前节点的左侧
  8. if(root.val > val){
  9. root.left = insertIntoBST(root.left,val);
  10. }
  11. if(root.val < val){
  12. root.right = insertIntoBST(root.right,val);
  13. }
  14. return root;
  15. }
  16. }

 450.删除二叉搜索树中的节点  

        五种情况

        1.没找到删除节点,遍历到空节点直接返回

        2.遍历到删除节点,删除节点左右子树为空,向上返回null

        3.遍历到删除节点,删除节点左子树为空右子树不为空 返回右子树节点

        4.遍历到删除节点,删除节点左子树不为空右子树为空  返回左子树节点

        5.遍历到删除节点,删除节点左右子树都不为空 将删除节点左子树头节点放到删除节点右子树下最左面节点的左孩子上,返回删除节点右孩子为新的根节点

  1. class Solution {
  2. public TreeNode deleteNode(TreeNode root, int key) {
  3. //终止条件找到删除节点 执行删除节点逻辑 将删除完的操作节点返回给上一个节点
  4. //没有找到删除节点
  5. if(root == null){
  6. return root;
  7. }
  8. if(root.val == key){
  9. if(root.left == null && root.right == null){
  10. return null;
  11. }else if(root.left != null && root.right == null){
  12. return root.left;
  13. }else if(root.left == null && root.right != null){
  14. return root.right;
  15. }else{
  16. //先找到删除节点右子树最左侧的值
  17. TreeNode cur = root.right;
  18. while(cur.left != null){
  19. cur = cur.left;
  20. }
  21. //再将删除节点的左子树连接到cur
  22. cur.left = root.left;
  23. //此处逻辑为 左为空 右不为空逻辑 直接返回右孩子
  24. return root.right; //直接将父节点指向删除节点的右孩子 删除节点
  25. }
  26. }
  27. //单层递归逻辑
  28. if(root.val > key){
  29. root.left = deleteNode(root.left,key);
  30. }
  31. if(root.val < key){
  32. root.right = deleteNode(root.right,key);
  33. }
  34. return root;
  35. }
  36. }

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/繁依Fanyi0/article/detail/419716
推荐阅读
相关标签
  

闽ICP备14008679号