- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
Permutation and Combination in Java
Permutation and Combination are a part of Combinatorics. Permutation is the different arrangements that a set of elements can make if the elements are taken one at a time, some at a time or all at a time. Combination is is the different ways of selecting elements if the elements are taken one at a time, some at a time or all at a time.
An example of this is given as follows −
Permutation = factorial(n) / factorial(n-r); Combination = factorial(n) / (factorial(r) * factorial(n-r)); n = 5 r = 3 Permutation = 60 Combination = 10
A program that demonstrates this is given as follows −
Example
public class Example { static int factorial(int n) { int fact = 1; int i = 1; while(i <= n) { fact *= i; i++; } return fact; } public static void main(String args[]) { int n = 7, r = 3, comb, per; per = factorial(n) / factorial(n-r); System.out.println("Permutation: " + per); comb = factorial(n) / (factorial(r) * factorial(n-r)); System.out.println("Combination: " + comb); } }
The output of the above program is as follows −
Output
Permutation: 210 Combination: 35
Now let us understand the above program.
The function factorial finds the factorial of the number n using a while loop. Then it returns fact. The code snippet that demonstrates this is given as follows −
static int factorial(int n) { int fact = 1; int i = 1; while(i <= n) { fact *= i; i++; } return fact; }
In the function main(), the permutation and combination of n and r are found using their respective formulas. Then the results are displayed. The code snippet that demonstrates this is given as follows −
public static void main(String args[]) { int n = 7, r = 3, comb, per; per = factorial(n) / factorial(n-r); System.out.println("Permutation: " + per); comb = factorial(n) / (factorial(r) * factorial(n-r)); System.out.println("Combination: " + comb); }
- Related Articles
- Permutation and Combination in Python?
- How to calculate combination and permutation in C++?
- Print all permutation of a string using ArrayList in Java
- Next Permutation in Python
- Permutation Sequence in C++
- Find Permutation in C++
- Java program to find the permutation when the values n and r are given
- Permutation in String in C++
- Lexicographically next permutation in C++
- Letter Case Permutation in C++
- Palindrome Permutation II in C++
- Count Vowels Permutation in C++
- What is Initial Permutation in DES?
- Using combination of “AND” and “OR” in SELECT in ABAP
- Circular Permutation in Binary Representation in C++
