i am able to understand how recursion is working here as its inside a if block.please explain it with a help of recursion tree or diagram.
my code is https://ide.codingblocks.com/s/116574
the problem in following step
if (lh - rh <= 1
&& isBalanced(node.left)
&& isBalanced(node.right))
return true;