Data Structures Question: Download Data Structures PDF

What is the data structures used to perform recursion?

Tweet Share WhatsApp

Answer:

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.

Download Data Structures PDF Read All 48 Data Structures Questions
Previous QuestionNext Question
If you are using C language to implement the heterogeneous linked list, what pointer type will you use?What are the methods available in storing sequential files ?