用java实现的二叉排序树

public class Node {public int value; public Node left; public Node right; public void store(int value){ if(valuethis.value){ if(this.right == null){ this.right = new Node(); this.right.value = https://www.it610.com/article/value; }else{ this.right.store(value); } } }public boolean find(int value){ System.out.println("happen"+this.value); if(value =https://www.it610.com/article/= this.value){ return true; }else if(value

    推荐阅读