Skip to content
geeksforgeeks
  • Courses
    • DSA to Development
    • Get IBM Certification
    • Newly Launched!
      • Master Django Framework
      • Become AWS Certified
    • For Working Professionals
      • Interview 101: DSA & System Design
      • Data Science Training Program
      • JAVA Backend Development (Live)
      • DevOps Engineering (LIVE)
      • Data Structures & Algorithms in Python
    • For Students
      • Placement Preparation Course
      • Data Science (Live)
      • Data Structure & Algorithm-Self Paced (C++/JAVA)
      • Master Competitive Programming (Live)
      • Full Stack Development with React & Node JS (Live)
    • Full Stack Development
    • Data Science Program
    • All Courses
  • Tutorials
    • Data Structures & Algorithms
    • ML & Data Science
    • Interview Corner
    • Programming Languages
    • Web Development
    • CS Subjects
    • DevOps And Linux
    • School Learning
  • Practice
    • Build your AI Agent
    • GfG 160
    • Problem of the Day
    • Practice Coding Problems
    • GfG SDE Sheet
  • Contests
    • Accenture Hackathon (Ending Soon!)
    • GfG Weekly [Rated Contest]
    • Job-A-Thon Hiring Challenge
    • All Contests and Events
  • DSA
  • Practice Mathematical Algorithm
  • Mathematical Algorithms
  • Pythagorean Triplet
  • Fibonacci Number
  • Euclidean Algorithm
  • LCM of Array
  • GCD of Array
  • Binomial Coefficient
  • Catalan Numbers
  • Sieve of Eratosthenes
  • Euler Totient Function
  • Modular Exponentiation
  • Modular Multiplicative Inverse
  • Stein's Algorithm
  • Juggler Sequence
  • Chinese Remainder Theorem
  • Quiz on Fibonacci Numbers
Open In App
Next Article:
Find geometric sum of the series using recursion
Next article icon

Program to calculate value of nCr using Recursion

Last Updated : 12 Jan, 2023
Comments
Improve
Suggest changes
Like Article
Like
Report

Given two numbers N and r, find the value of NCr using recursion

Examples:

Input: N = 5, r = 2
Output: 10
Explanation: The value of 5C2 is 10


Input: N = 3, r = 1
Output: 3

 

Approach 1: One very interesting way to find the C(n,r) is the recursive method which is based on the recursive equation.

C(n,r) = C(n-1,r-1) + C(n-1,r)

Below is the implementation of the above approach as follows:

C++
#include <bits/stdc++.h> using namespace std;  // Function to calculate the value of nCr // using recursion  int comb(int n,int r){    if(n<r){        return 0;    }    if(r == 0){        return 1;    }    if(r == 1){        return n;    }    if(n == 1){        return 1;    }    return comb(n-1,r-1)+comb(n-1,r); }  // Driver code int main(){    int n = 10,r = 5;    cout << comb(n,r); } 
Java
// Java code for the above approach import java.io.*; class GFG {    // Function to calculate the value of nCr   // using recursion   static int comb(int n, int r)   {      if(n<r){        return 0;      }      if(r == 0){          return 1;      }      if(r == 1){          return n;      }      if(n == 1){          return 1;      }      return comb(n-1,r-1)+comb(n-1,r);   }    public static void main(String[] args)   {     int n = 5, r = 3;      System.out.println(comb(n, r));   } } 
Python3
# Python code to implement above approach  # Function to calculate the value of nCr # using recursion  def comb(n, r):     if(n < r):         return 0     if(r == 0):         return 1     if(r == 1):         return n     if(n == 1):         return 1     return comb(n - 1, r - 1) + comb(n - 1, r)      #  Driver code n = 10 r = 5 print(comb(n, r))  # This code is contributed by Pushpesh Raj. 
C#
using System;  public class GFG{    // Function to calculate the value of nCr   // using recursion   static int comb(int n, int r)   {     if(n<r){        return 0;     }     if(r == 0){        return 1;     }     if(r == 1){        return n;     }     if(n == 1){        return 1;     }     return comb(n-1,r-1)+comb(n-1,r);   }    // Driver code   static public void Main (){      int n = 5, r = 3;     Console.WriteLine(comb(n, r));   } } 
JavaScript
<script> //Javascript code to implement above approach  // Function to calculate the value of nCr // using recursion  function comb(n, r){    if( n<r ){        return 0;    }    if(r == 0){        return 1;    }    if(r == 1){        return n;    }    if(n == 1){        return 1;    }    return comb(n-1,r-1) + comb(n-1,r); }  // Driver code  let n = 5, r = 3; document.write(comb(n,r));   // </script> 

Output
252

Time Complexity: O(2^n), Auxiliary Space: O(n)

Approach 2: Another idea is simply based on the below formula.

NCr = N! / (r! * (N-r)!)
Also, 
NCr-1 = N! / ( (r-1)! * (N - (r-1))! )

Hence,

  • NCr * r! * (N - r)! = NCr-1  * (r-1)! * (N - (r-1))!
  • NCr * r * (N-r)! = NCr-1  * (N-r+1)!                          [eliminating (r - 1)! from both side]
  • NCr * r = nCr-1  * (N-r+1)

Therefore,

NCr = NCr-1 * (N-r+1) / r

Below is the implementation of the above approach:

C++
// C++ code to implement above approach #include <bits/stdc++.h> using namespace std;  // Function to calculate the value of nCr // using recursion int nCr(int N, int r) {     int res = 0;     if (r == 0) {         return 1;     }     else {         res = nCr(N, r - 1)               * (N - r + 1) / r;     }     return res; }  // Driver code int main() {     int N = 5, r = 3;     cout << nCr(N, r);     return 0; } 
Java
// Java code for the above approach import java.io.*; class GFG {    // Function to calculate the value of nCr   // using recursion   static int nCr(int N, int r)   {     int res = 0;     if (r == 0) {       return 1;     }     else {       res = nCr(N, r - 1) * (N - r + 1) / r;     }     return res;   }    public static void main(String[] args)   {     int N = 5, r = 3;      System.out.println(nCr(N, r));   } }  // This code is contributed by Potta Lokesh 
Python3
# Python code to implement above approach  # Function to calculate the value Of nCr # using recursion def nCr(N, r):     res = 0     if(r == 0):         return 1     else:         res = nCr(N, r-1)  * (N-r + 1) / r     return res   # Driver code if __name__ == "__main__":     N = 5     r = 3     print(int(nCr(N, r))) 
C#
using System;  public class GFG{    // Function to calculate the value of nCr   // using recursion   static int nCr(int N, int r)   {     int res = 0;     if (r == 0) {       return 1;     }     else {       res = nCr(N, r - 1)         * (N - r + 1) / r;     }     return res;   }    // Driver code   static public void Main (){      int N = 5, r = 3;     Console.WriteLine(nCr(N, r));   } }  // This code is contributed by hrithikgarg03188. 
JavaScript
<script> //Javascript code to implement above approach  // Function to calculate the value of nCr // using recursion function nCr(N, r) {     let res = 0;     if (r == 0) {         return 1;     }     else {         res = nCr(N, r - 1)               * (N - r + 1) / r;     }     return res; }  // Driver code  let N = 5, r = 3; document.write(nCr(N,r));      // This code is contributed by Taranpreet  // </script> 

Output
10

Time Complexity: O(r), Auxiliary Space: O(r)

Complexity Analysis: 
The time complexity of the above approach is O(r). This is because the function makes a single recursive call for each value of r, and the time taken to calculate the value of nCr is constant.

The Auxiliary space complexity of the above approach is O(r), as the recursive function calls create a new stack frame for each call. This means that the program will consume a significant amount of memory for larger values of r.


Next Article
Find geometric sum of the series using recursion

S

singhshrey13
Improve
Article Tags :
  • Misc
  • Mathematical
  • Recursion
  • DSA
  • Permutation and Combination
Practice Tags :
  • Mathematical
  • Misc
  • Recursion

Similar Reads

  • Introduction to Recursion
    The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. A recursive algorithm takes one step toward solution and then recursively call itself to further move. The algorithm stops once we reach the solution
    15+ min read
  • What is Recursion?
    Recursion is defined as a process which calls itself directly or indirectly and the corresponding function is called a recursive function. Example 1 : Sum of Natural Numbers Let us consider a problem to find the sum of natural numbers, there are several ways of doing that but the simplest approach i
    8 min read
  • Difference between Recursion and Iteration
    A program is called recursive when an entity calls itself. A program is called iterative when there is a loop (or repetition). Example: Program to find the factorial of a number C/C++ Code // C program to find factorial of given number #include <stdio.h> // ----- Recursion ----- // method to f
    8 min read
  • Types of Recursions
    What is Recursion? The process in which a function calls itself directly or indirectly is called recursion and the corresponding function is called a recursive function. Using recursive algorithm, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inord
    15+ min read
  • Finite and Infinite Recursion with examples
    The process in which a function calls itself directly or indirectly is called Recursion and the corresponding function is called a Recursive function. Using Recursion, certain problems can be solved quite easily. Examples of such problems are Towers of Hanoi (TOH), Inorder/Preorder/Postorder Tree Tr
    6 min read
  • What is Tail Recursion
    Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call. For example the following function print() is tail recursive. [GFGTABS] C++ // An example of tail re
    7 min read
  • What is Implicit recursion?
    What is Recursion? Recursion is a programming approach where a function repeats an action by calling itself, either directly or indirectly. This enables the function to continue performing the action until a particular condition is satisfied, such as when a particular value is reached or another con
    5 min read
  • Why is Tail Recursion optimization faster than normal Recursion?
    What is tail recursion? Tail recursion is defined as a recursive function in which the recursive call is the last statement that is executed by the function. So basically nothing is left to execute after the recursion call. What is non-tail recursion? Non-tail or head recursion is defined as a recur
    4 min read
  • Recursive Functions
    A Recursive function can be defined as a routine that calls itself directly or indirectly. In other words, a recursive function is a function that solves a problem by solving smaller instances of the same problem. This technique is commonly used in programming to solve problems that can be broken do
    4 min read
  • Difference Between Recursion and Induction
    Recursion and induction are fundamental ideas in computer science and mathematics that might be regularly used to solve problems regarding repetitive structures. Recursion is a programming technique in which a function calls itself to solve the problem, whilst induction is a mathematical proof techn
    4 min read
geeksforgeeks-footer-logo
Corporate & Communications Address:
A-143, 7th Floor, Sovereign Corporate Tower, Sector- 136, Noida, Uttar Pradesh (201305)
Registered Address:
K 061, Tower K, Gulshan Vivante Apartment, Sector 137, Noida, Gautam Buddh Nagar, Uttar Pradesh, 201305
GFG App on Play Store GFG App on App Store
Advertise with us
  • Company
  • About Us
  • Legal
  • Privacy Policy
  • In Media
  • Contact Us
  • Advertise with us
  • GFG Corporate Solution
  • Placement Training Program
  • Languages
  • Python
  • Java
  • C++
  • PHP
  • GoLang
  • SQL
  • R Language
  • Android Tutorial
  • Tutorials Archive
  • DSA
  • Data Structures
  • Algorithms
  • DSA for Beginners
  • Basic DSA Problems
  • DSA Roadmap
  • Top 100 DSA Interview Problems
  • DSA Roadmap by Sandeep Jain
  • All Cheat Sheets
  • Data Science & ML
  • Data Science With Python
  • Data Science For Beginner
  • Machine Learning
  • ML Maths
  • Data Visualisation
  • Pandas
  • NumPy
  • NLP
  • Deep Learning
  • Web Technologies
  • HTML
  • CSS
  • JavaScript
  • TypeScript
  • ReactJS
  • NextJS
  • Bootstrap
  • Web Design
  • Python Tutorial
  • Python Programming Examples
  • Python Projects
  • Python Tkinter
  • Python Web Scraping
  • OpenCV Tutorial
  • Python Interview Question
  • Django
  • Computer Science
  • Operating Systems
  • Computer Network
  • Database Management System
  • Software Engineering
  • Digital Logic Design
  • Engineering Maths
  • Software Development
  • Software Testing
  • DevOps
  • Git
  • Linux
  • AWS
  • Docker
  • Kubernetes
  • Azure
  • GCP
  • DevOps Roadmap
  • System Design
  • High Level Design
  • Low Level Design
  • UML Diagrams
  • Interview Guide
  • Design Patterns
  • OOAD
  • System Design Bootcamp
  • Interview Questions
  • Inteview Preparation
  • Competitive Programming
  • Top DS or Algo for CP
  • Company-Wise Recruitment Process
  • Company-Wise Preparation
  • Aptitude Preparation
  • Puzzles
  • School Subjects
  • Mathematics
  • Physics
  • Chemistry
  • Biology
  • Social Science
  • English Grammar
  • Commerce
  • World GK
  • GeeksforGeeks Videos
  • DSA
  • Python
  • Java
  • C++
  • Web Development
  • Data Science
  • CS Subjects
@GeeksforGeeks, Sanchhaya Education Private Limited, All rights reserved
We use cookies to ensure you have the best browsing experience on our website. By using our site, you acknowledge that you have read and understood our Cookie Policy & Privacy Policy
Lightbox
Improvement
Suggest Changes
Help us improve. Share your suggestions to enhance the article. Contribute your expertise and make a difference in the GeeksforGeeks portal.
geeksforgeeks-suggest-icon
Create Improvement
Enhance the article with your expertise. Contribute to the GeeksforGeeks community and help create better learning resources for all.
geeksforgeeks-improvement-icon
Suggest Changes
min 4 words, max Words Limit:1000

Thank You!

Your suggestions are valuable to us.

What kind of Experience do you want to share?

Interview Experiences
Admission Experiences
Career Journeys
Work Experiences
Campus Experiences
Competitive Exam Experiences