Base Case in a recursive method
- by Shaza
Hey all,
About my question, I'm asking a theoretical question here about Base case or the halting case in a recursive method, what's its standards?
I mean, is it standard not to have body in it, just a return statement?
Is it always like the following:
If(input operation value)
return sth;
Do you have different thoughts about it??