Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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();

}
share|improve this question
you don't do anything with the return values of the recursive calls what did you expect to happen – ratchet freak Nov 12 '11 at 19:07
When working with recursive problems, often it's best if you take out a pencil and paper and step through it. Try doing that here and see what you come up with. – Brian Roach Nov 12 '11 at 19:08

closed as too localized by Brian Roach, Adam Rackis, Hovercraft Full Of Eels, VMAtm, Dori Nov 13 '11 at 4:40

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

2 Answers

You're not using the return values of your recursion calls, that looks like the problem to me at first sight.

Where you have:

getHelper(i, n.getLeft(), target);

or similar, don't you actually want:

return getHelper(i, n.getLeft(), target);

If you don't want to return the value, I'm sure you'd at least want to use it for something, right?

Since you never update what "n" is in your main call, you always return the root value, since that's what you pass to the getHelper in your main method.

Let me know if you need me to clarify a bit more.

share|improve this answer

whay do you call getHelper(i+1, n, target);? This call should not be there at all, it starts travelsal from root node again and you never scan right node. This is first point. The second point is that you don't update "i" after recursive calls to getHelper. You should return some complex object that contains current index and node value.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.