In this method, I am trying to get a node at a specific index. I am doing it by traversing through the tree in order using recursion. However, it is always just returning the data of the root for some reason. Other methods in my tree are all tested and working, so I'm not sure what is going on.
I would really appreciate my help. Here is the code:
public E get(int kth) {
if (kth >= size || kth < 0)
throw new IllegalArgumentException("Invalid parameter");
return getHelper(0, root, kth);
}
private E getHelper(int i, BSTNode<E> n, int target) {
if(n.getLeft() != null)
getHelper(i, n.getLeft(), target);
if (i == target)
return n.getData();
getHelper(i+1, n, target);
if (n.getRight() != null)
getHelper(i+1, n.getRight(), target);
return n.getData();
}
