Recursion एक ऐसी process होती है जिसमें function अपने आप को ही call करता है। Recursion का use किसी problem को small parts में divide करके solve करने के लिए किया जाता है । ऐसे functions जो अपने आप को ही call करते है उन्हें recursive functions कहते है ।
return type myFunction(Parameters-list) |
1. यदि हम Recursion के द्वारा किसी problem को solve करते है तो इससे बार बार function को call करने की जरुरत नहीं पड़ती है । यदि हम 1 बार function को call करते है तो जब तक end result न आ जाये तब तक ये स्वयं को call करते रहता है ।
2. Recursion में same problem को easily solve किया जाता है ।
1. Recursive programs normal programs से slow होते है ।
2. Requires consuming extra memory
Direct recursion is a recursion in which a function calls itself.
return_type MyFunction(parameter-list) |
इसमें एक function किसी दूसरे ऐसे function को call करता है जो return में उसे ही call करता है ।
First Function
return_type FunctionOne(parameter-list) |
Second Function
return_type FunctionTwo(parameter-list) |
#include <stdio.h> |
Output
Enter a positive integer: 4 |