1) What is meant by the term unbalanced binary tree and how we can write an algorithm to test it?
2) I have a problem which asks to write a function to test the depth of a binary tree. I think this would work but not sure....:
function getDepth(Node n){
if(node == null){
return 0;
}
return 1 + Math.max(getDepth(node.left), getDepth(node.right));
}
getDepth(root);
Can anyone give me pointers...