+ 2
WHY RECURSION,HOW RECURSION WORKS?
I didn't understand recursion! How much fast recursion is?
2 Answers
+ 1
RECURSION IS MOSTLY A MORE READABLE, BUT LESS EFFICIENT WAY IF LOOPING. IT IS USEFUL IF YOU WANT TO REMEMBER THE HISTORY OF THE FUNCTION
+ 1
It's a function that generally, if it doesn't mean certain condition (exit condition) it will return a calling to the same function, so it'll loop until it reaches a condition where it doesn't return a calling to the same function