insert function in BinarySearchTree (Java)

前端 未结 0 949
小蘑菇
小蘑菇 2021-01-15 20:50
 public void insert(String word,String def){
    Node newNode = new Node(word, def);
    if(root==null){
        root=newNode;
    }
     Node p, q ;          
    p         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题