Recursive Functions

1

Recursive Functions

  • A function that calls itself is known as Recursive Function. 

  • Factorial(n) = n*factorial(n-1) 

 

Advantages of Python Recursion:

  • We can reduce length of the code and improves readability.

  • We can solve complex problems very easily. 

  • Algorithms can be defined recursively making it much easier to visualize and prove.

Disadvantages of Python Recursion 

  • Slow.

  • Logical but difficult to trace and debug.

  • Requires extra storage space. For every recursive calls separate memory is allocated for the variables.


 

Post a Comment

1Comments
  1. Thanks for such a pleasant post. This post loaded with lots of useful information. Keep it up. If you are looking for the best information and suggestions related to Python Recursion Function then visit Coding Dolphin.

    ReplyDelete
Post a Comment