Good afternoon. I'm developing recursive methods that work on a binary search tree, but I'm having a hard time recursion.
For example, the method below should return the height of the tree:
public int altura(){
return altura(root,0);...
asked by
18.11.2015 / 22:38