当前位置:   article > 正文

使用递归查找二叉树是否存在某个节点(查找二叉树是否存在某个值)_递归遍历树形数据找某个数据是否存在

递归遍历树形数据找某个数据是否存在

下面是一个二叉树,查找某个值是否存在。
在这里插入图片描述
代码:

public class TestTree {
    static class Node {
        public char val;
        public Node left;
        public Node right;
        public Node(char val) {
            this.val = val;
            // 以下两个代码可以省略.
            // 引用类型的成员变量, 会被默认初始化为 null
            this.left = null;
            this.right = null;
        }
        @Override
    public String toString() {
            return "Node{" +
                    "val=" + val +
                    '}';
        }
    }
    // 辅助我们构造测试数据的.
    static Node build() {
        // 通过 build 方法构建一棵树, 返回树的根节点
        Node A = new Node('A');
        Node B = new Node('B');
        Node C = new Node('C');
        Node D = new Node('D');
        Node E = new Node('E');
        Node F = new Node('F');
        Node G = new Node('G');
        A.left = B;
        A.right = C;
        B.left = D;
        B.right = E;
        C.left = F;
        C.right = G;
        return A;
    }
    public static Node Find(Node root,char toFind) {
       if(root==null) {
           return null;
       }
       if(root.val==toFind) {
           return root;
       }
       Node result= Find(root.left,toFind);
       if(result!=null) {
           return result;
       }
      return Find(root.right,toFind);
   }
    public static void main(String[] args) {
       Node root = build();
        System.out.println(Find(root, 'G'));
    }
}
**运行结果:**
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56

在这里插入图片描述

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

闽ICP备14008679号