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;
}
sum(n.left,tot);&sum(n.right,tot);it should betot=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