I couldn't find an answer to this on the forums, sorry if this has been answered and I missed it.
I am drawing a blank here on using recursion on a non static method.
Example:
public static void farLeft(BTNode root){
if(root !=null)
return farLeft(root.left);
}
This is just some random code I put in here. Now if I wanted to do that exact same thing using a non-static method, how would I use recursion on a non-static method? My book doesn't do a good job at explaining it.