What is the data structures used to perform recursion? Ans. Stack. Because of its LIFO (Last In First Out) property it remembers its 'caller' so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the function calls. Every recursive function has its equivalent iterative (non-recursive) function. Even when such equivalent iterative procedures are written, explicit stack is to be used. - Study24x7
Social learning Network
20 Apr 2023 11:35 AM study24x7 study24x7

What is the data structures used to perform recursion? Ans. Stack. Because of its LIFO (Last In First Out) property it remembers its 'caller' so knows whom to return when the function has to return. Recursion makes use of system stack for storing the return addresses of the func...

See more

study24x7
Write a comment
Related Questions
500+   more Questions to answer
Most Related Articles