Lets see algorithm for printing Factorial of a Number.
We will see 3 ways of finding Factorial of number,
We will see 3 ways of finding Factorial of number,
- Recursive Implementation
- Iterative Implementation
- Using BigInteger for Large values.
Java Program to Print Factorial of a number using Recursion.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 | package javabypatel; import java.math.BigInteger; public class FindFactorialOfNumber { public static void main(String[] args) { System.out.println(factRecursive( 5 )); System.out.println(factIterative( 5 )); System.out.println(factorialForLargeNumbers( 5 )); } //Recursive Implementation private static int factRecursive( int num){ if (num < 0 ){ return - 1 ; } if (num == 1 || num == 0 ){ return 1 ; } num = num * factRecursive(num- 1 ); return num; } //Iterative Implementation private static int factIterative( int num){ if (num < 0 ){ return - 1 ; } int fact = 1 ; for ( int i = 1 ; i <= num; i++) { fact *= i; } return fact; } //Using BigInteger for Large values public static String factorialForLargeNumbers( int num) { if (num < 0 ){ return "-1" ; } BigInteger fact = new BigInteger( "1" ); for ( int i = 1 ; i <= num; i++) { fact = fact.multiply( new BigInteger(String.valueOf(i))); } return fact.toString(); } } |
You may also like to see
Compress a given string in-place and with constant extra space.
Check whether a given string is an interleaving of String 1 and String 2.
Given two words (beginWord and endWord), and a dictionary's word list, find the length of shortest transformation sequence from beginWord to endWord.
Serialize and Deserialize a Binary Tree
Advanced Multithreading Interview Questions In Java
Enjoy !!!!
If you find any issue in post or face any error while implementing, Please comment.