Home > Backend Development > C++ > body text

Using auxiliary space for recursive functions in C program?

王林
Release: 2023-09-05 10:01:06
forward
1064 people have browsed it

Using auxiliary space for recursive functions in C program?

Here we will see how recursive function calls require auxiliary space. How is it different from a normal function call?

Suppose we have a function as shown below -

long fact(int n){
   if(n == 0 || n == 1)
      return 1;
   return n * fact(n-1);
}
Copy after login

This function is a recursive function. When we call it like fact(5), it will store the address inside the stack as shown below -

fact(5) --->
fact(4) --->
fact(3) --->
fact(2) --->
fact(1)
Copy after login

As the recursive function calls itself again and again, the address is added to the stack. Therefore, if the function is called recursively n times, it will occupy O(n) auxiliary space. But this does not mean that if a normal function is called n times, the space complexity will be O(n). For normal functions, the address is pushed onto the stack when called. Once completed, the address is popped off the stack and entered into the caller function. Then call again. So its complexity is O(1).

The above is the detailed content of Using auxiliary space for recursive functions in C program?. For more information, please follow other related articles on the PHP Chinese website!

source:tutorialspoint.com
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!