Shouldn't the indirect recursion be something like this:
void function1(){ . . function2(); } void function2(){ . . function1(); }
Also Would like to point out the slight error in the 1 to N logic, unless I am wrong it should look something like this:
public class Test{ static int x = 1; static void print1toN(int n) { if(x>n) return; System.out.print(x+" "); x++; print1toN(n); } public static void main(String[] args) { int n=10; print1toN(n); } }
Other than these things, interesting topic, keep it up...v
Thank you for pointing out the typo! and regarding the print 1 to N, problem, I did not focus on the base cases, I just wanted to show how recursion works!
Oh no problem. Happy to help 👍
Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink.
Hide child comments as well
Confirm
For further actions, you may consider blocking this person and/or reporting abuse
We're a place where coders share, stay up-to-date and grow their careers.
Shouldn't the indirect recursion be something like this:
Also Would like to point out the slight error in the 1 to N logic, unless I am wrong it should look something like this:
Other than these things, interesting topic, keep it up...v
Thank you for pointing out the typo!
and regarding the print 1 to N, problem, I did not focus on the base cases, I just wanted to show how recursion works!
Oh no problem. Happy to help 👍