6.19 二叉搜索树中的搜索——【LeetCode】

在这里插入图片描述



package com.atuigu.java;
import java.util.Stack;


class Solution {
    // 递归, 普通二叉树
    public TreeNode searchBST(TreeNode root, int val) {
        if(root == null || root.val == val){
            return root;
        }
        TreeNode left = searchBST(root.left, val);
        if(left != null){
            return left;
        }
        TreeNode right = searchBST(root.right, val);
        if(right != null){
            return right;
        }
        return null;
    }

    // 递归,利用二叉搜索树特点,优化
    public TreeNode searchBST1(TreeNode root, int val) {
        if(root == null || root.val == val){
            return root;
        }
        if(val < root.val){
            return searchBST1(root.left, val);
        }else{
            return searchBST1(root.right, val);
        }
    }

    // 迭代,普通二叉树
    public TreeNode searchBST2(TreeNode root, int val) {
        if(root == null || root.val == val){
            return root;
        }
        Stack<TreeNode> stack = new Stack<>();//临时存储每一行的结点
        stack.push(root);
        while(!stack.isEmpty()){
            TreeNode pop = stack.pop();
            if(pop.val == val){
                return pop;
            }

            //提前加入stack中  为下次while循环做准备
            if(pop.right != null){
                stack.push(pop.right);
            }
            if(pop.left != null){
                stack.push(pop.left);
            }
        }
        return null;
    }

    // 迭代,利用二叉搜索树特点,优化,可以不需要栈
    public TreeNode searchBST3(TreeNode root, int val) {
        while(root != null){
            if(val < root.val){
                root = root.left;
            }else if(val > root.val){
                root = root.right;
            }else{
                return root;
            }
        }
        return root;
    }

}

class TreeNode {
    int val;
    TreeNode left;
    TreeNode right;
    TreeNode() {}
    TreeNode(int val) { this.val = val; }
    TreeNode(int val, TreeNode left, TreeNode right) {
        this.val = val;
        this.left = left;
        this.right = right;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

DZSpace

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值