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

For a homework assignment, I am asked to sum all elements in an Integer BST without using global variables. I have given it a shot, but I'm not able to make it work.

My code so far:

public int sum(){ 
    int tot = 0;
    return sum(root,tot); 
} 

private int sum(Node n, int tot){
    if (n == null) 
        return tot; 
    tot += n.data; 
    if(n.left != null) 
        sum(n.left,tot); 
    if(n.right != null) 
        sum(n.right,tot);
    return tot;
} 
share|improve this question
6  
What have you done so far? share some logic or code. – zengr Nov 6 '11 at 17:22
It's not difficult to edit your question and add the code.... and what exactly is your problem now? – Felix Kling Nov 6 '11 at 17:31
so is there a problem with your code now? Couple of things, 1) pass params by reference 2) you're ignoring the return value of sum(n.left,tot); & sum(n.right,tot); it should be tot=sum(n.left,tot);. But if you pass tot by ref then you don't need to bother. – thekashyap Nov 6 '11 at 17:58
sorry, just noticed it's java.. ignore the part abt pass by reference. See my code updated in the answer.. – thekashyap Nov 6 '11 at 18:01
if i say tot=sum(n.left/n.right, tot);, won't I be assigning sum to the new return value everytime i recur? i want to increment sum which i believe happens because of tot += n.data – ac3hole Nov 6 '11 at 18:03
show 2 more comments

1 Answer

Just traverse teh tree using any one (pre/post/in) order to visit each node. And get the sum.

As teh question has no code, there is no code in answer as well. If you want code, then post code. :)

-- edit --

public int sum(){
    return sum(root,0);
} 

private int sum(Node n, int tot){
    if (n == null) 
        return tot; 

    tot += n.data; 
    if(n.left != null) 
        tot = sum(n.left,tot); 
    if(n.right != null) 
        tot = sum(n.right,tot);
    return tot;
}
share|improve this answer
Thanks, you made pretty easier. – ac3hole Nov 6 '11 at 17:33
Thank you again it worked, this is what i did this morning. 'public int sum(){ return sum(root); } private int sum(Node n){ if (n == null) return 0; else return n.data + sum(n.left)+ sum(n.right) }' – ac3hole Nov 7 '11 at 7:10

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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