You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
t.insert("", "sg");
System.out.println(t.contains("")); // prints false
The problem is that, the when you try to find the key "", the root node will match, which is a non real node. (In this tree, you cannot store multiple values for a single key.)
The text was updated successfully, but these errors were encountered:
t.insert("", "sg");
System.out.println(t.contains("")); // prints false
The problem is that, the when you try to find the key "", the root node will match, which is a non real node. (In this tree, you cannot store multiple values for a single key.)
The text was updated successfully, but these errors were encountered: