Make your own. It's easy. Super super easy:
public class Tree{
public Node root;
}
public class Node{
public ArrayList<Node> children;
public Node parent;
public String value;
}
Now, putting a string value with a sequence of integers would be done something like this:
public class Tree{
public String put(String value, int[] path){
Node current = root;
for(int i=0;i<path.length;i++){
if(current.children.get(i)==null){
current.children.add(i, new Node());
}
current = current.children.get(i);
}
String ret = current.value;
current.value = value;
}
}
Getting the value would be similar, except that you wouldn't overwrite the current value with a given value.
A description of what put does in English:
- Go to the nth child of the current node, where n is the next value in your path.
- If the child doesn't exist, create it.
- Repeat until the end of the path is reached.
- Return the current value (optional)
- Set the value to the new value.
So using this would look something like this:
Tree myTree = new Tree();
myTree.root = new Node();
int[] path = {0, 0, 0};
myTree.put("hi", path);
System.out.println(myTree.get(path));
And you'll get "hi" in your console.
Objectinstead of a specific type. I wasn't sure if you wanted something more specific. – oconnor0 Jan 2 at 17:10