public void insert(String word,String def){ Node newNode = new Node(word, def); if(root==null){ root=newNode; } Node p, q ; p