How to Find Greatest Common Divisor of two numbers in Java - [ Euclid's algorithm GCD Example] (original) (raw)
How to find the Greatest Common Divisor of two numbers in Java
Simple Java program to find GCD (Greatest Common Divisor) or GCF (Greatest Common Factor) or HCF (Highest common factor). The GCD of two numbers is the largest positive integer that divides both the numbers fully i.e. without any remainder. There are multiple methods to find GCD, GDF, or HCF of two numbers but Euclid's algorithm is very popular and easy to understand, of course, only if you understand how recursion works. Euclid's algorithm is an efficient way to find the GCD of two numbers and it's pretty easy to implement using recursion in the Java program. According to Euclid's method GCD of two numbers, a, b is equal to GCD(b, a mod b) and GCD(a, 0) = a.
The latter case is the base case of our Java program to find the GCD of two numbers using recursion. You can also calculate the greatest common divisor in Java without using recursion but that would not be as easy as the recursive version, but still a good exercise from the coding interview point of view.
It's very easy to understand this algorithm once you look at the flow chart, which explains how Euclid's GCD algorithm works. You can also read Introduction to Algorithms book by Thomas Cormen to learn more about similar computer algorithms.
This is one of the most popular books to learn Data structure and algorithms and widely used as textbooks for algorithms in many schools, colleges, and universities. It is also popularly known as CLRS (Cormen, Leiserson, Rivest, Stein).
And, if you need a course then I highly recommend checking out Data Structures and Algorithms: Deep Dive Using Java course on Udemy. It's a hands-on course and covers all essential data structures and perfect for Java developers.
GCD [Greatest Common Divisor] of Two Integers in Java
In Euclid's algorithm, we start with two numbers X and Y. If Y is zero then the greatest common divisor of both will be X, but if Y is not zero then we assign the Y to X and Y becomes X%Y. Once again we check if Y is zero, if yes then we have our greatest common divisor or GCD otherwise we keep continue like this until Y becomes zero.
Since we are using the modulo operator, the number is getting smaller and smaller at each iteration, so the X%Y will eventually become zero.
Let' take an example of calculating GCD of 54 and 24 using Euclid's algorithm. Here X = 54 and Y = 24 since Y is not zero we move to the logical part and assign X = Y, which means X becomes 24 and Y becomes 54%24 i.e 6.
Since Y is still not zero, we again apply the logic. This time X will become 6 and Y will become 24%6 i.e. Y=0. Bingo, Y is now zero which means we have our answer and it's nothing but the value of X which is 6 (six).
The algorithm will become clearer when you see the flow chart of calculating the GCD of two numbers using recursion as shown below. You can see we are starting with two numbers X and Y and if Y=0 then we got our answer, otherwise, we apply logic and check again.
Now let's learn how to convert Euclid's algorithm to find GCD into Java code.
Here is my complete code example of how to find the GCD of two numbers in Java. This Java program uses Euclid's method to find the GCD of two numbers. They must be an integer, so make sure you check the numbers entered by the user like floating-point numbers are not allowed.
Similarly, any alphabets and other characters are not allowed except the '+' and '-' sign, and all these rules are ensured by Scanner.nextInt() call. This method will throw an error if the user will enter an invalid value instead of an integer.
Btw, if you are new to Java and want to learn more about these utility classes like Scanner then I suggest you check out a comprehensive Java course like The Complete Java Masterclass by Tim Buchalaka on Udemy. It's also the most up-to-date course and covers new features from recent Java releases.
Java Program to calculate GCD of two numbers
/**
Java program to demonstrate How to find Greatest Common Divisor or GCD of
two numbers using Euclid’s method. There are other methods as well to
find GCD of two number in Java but this example of finding GCD of two number
is most simple.
@author Javin Paul */ public class GCDExample {
public static void main(String args[]){
//Enter two number whose GCD needs to be calculated. Scanner scanner = new Scanner(System.in); System.out.println("Please enter first number to find GCD"); int number1 = scanner.nextInt(); System.out.println("Please enter second number to find GCD"); int number2 = scanner.nextInt(); System.out.println("GCD of two numbers " + number1 +" and " + number2 +" is :" + findGCD(number1,number2));
}
/*
- Java method to find GCD of two number using Euclid's method
- @return GDC of two numbers in Java */ private static int findGCD(int number1, int number2) { //base case if(number2 == 0){ return number1; } return findGCD(number2, number1%number2); }
}
Output: Please enter first number to find GCD 54 Please enter second number to find GCD 24 GCD of two numbers 54 and 24 is :6
That’s all on how to find the GCD of two numbers in Java. You can use this Java program to prepare for viva or other computer homework and assignment test or for your self-practice to improve programming in Java.
By the way, there is a couple of other techniques to find Greatest common divisor in Java, as an exercise you can explore those methods and write code for that. The key point is you need to learn how to convert an algorithm into code to become a programmer.
If you like this little programming exercise and hungry for more to improve your coding skill, check out these exercises, they will help to build your programming logic :
- How to reverse String in Java without using API methods? (Solution)
- Write a function to find the middle element of the linked list in one pass? (solution)
- How to check if a number is binary in Java? (answer)
- 10 Free Data Structure and Algorithms Courses for Beginners (courses)
- Write a Program to Check if a number is Power of Two or not? (program)
- 10 Books to learn Data Structure and Algorithms in-depth (books)
- Write a method to check if two String are Anagram of each other? (method)
- 100+ data structure and algorithms interview questions (questions)
- Write a program to check if a number is Prime or not? (solution)
- Top 5 Courses to learn Data Structure and Algorithms (courses)
- Write a Program to remove duplicates from an array without using Collection API? (program)
- 5 Essential Skills to Crack any Coding interview (skills)
- Write a method to count occurrences of a character in String? (Solution)
- How to find the Fibonacci sequence up to a given number? (solution)
- 10 Courses to Crack any Programming interview (courses)
- How to check if LinkedList contains any cycle in Java? (solution)
- How to check if a number is Armstrong's number or not? (solution)
- How do find the largest and smallest number in an array? (solution)
- Write a method to remove duplicates from ArrayList in Java? (Solution)
- How to solve the Producer-Consumer Problem in Java. (solution)
- How to find prime factors of an integer in Java? (solution)
- Write a program to find the first non-repeated characters from String in Java? (program)
Thanks for reading this article so far. If you like this coding problem and my solution then please share it with your friends and colleagues. If you have any questions or doubt then please let us know and I'll try to find an answer for you. As always suggestions, comments, innovative and better answers are most welcome.
P. S. - If you are looking for some Free Algorithms courses to improve your understanding of Data Structure and Algorithms, then you should also check the Data Structure in Java free course on Udemy. It's completely free and all you need to do is create a free Udemy account to enroll in this course.