This is a Java Program to Implement Stein GCD Algorithm. The binary GCD algorithm, also known as Stein’s algorithm, is an algorithm that computes the greatest common divisor of two nonnegative integers. Stein’s algorithm uses simpler arithmetic operations than the conventional Euclidean algorithm. It replaces division with arithmetic shifts, comparisons and subtraction.
Here is the source code of the Java Program to Implement Stein GCD Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/**
** Java Program to Implement Stein GCD Algorithm
**/
import java.util.Scanner;
/** Class SteinGcd **/
public class SteinGcd
{
/** Function to calculate gcd **/
public int gcd(int u, int v)
{
int shift;
if (u == 0)
return v;
if (v == 0)
return u;
for (shift = 0; ((u | v) & 1) == 0; ++shift)
{
u >>= 1;
v >>= 1;
}
while ((u & 1) == 0)
u >>= 1;
do
{
while ((v & 1) == 0)
v >>= 1;
if (u > v)
{
int t = v;
v = u;
u = t;
}
v = v - u;
} while (v != 0);
return u << shift;
}
/** Main function **/
public static void main (String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Stein GCD Algorithm Test\n");
/** Make an object of SteingGcd class **/
SteinGcd sg = new SteinGcd();
/** Accept two integers **/
System.out.println("Enter two integer numbers\n");
int n1 = scan.nextInt();
int n2 = scan.nextInt();
/** Call function gcd of class SteinGcd **/
int gcd = sg.gcd(n1, n2);
System.out.println("GCD of "+ n1 +" and "+ n2 +" = "+ gcd);
}
}
Output:
Stein GCD Algorithm Test Enter two integer numbers 32984 10013 GCD of 32984 and 10013 = 589
Related posts:
Intersection of Two Lists in Java
Java Program to Perform LU Decomposition of any Matrix
Guide to the Synchronized Keyword in Java
Removing Elements from Java Collections
Java Map With Case-Insensitive Keys
Injecting Prototype Beans into a Singleton Instance in Spring
Java Program to Implement CopyOnWriteArrayList API
Integer Constant Pool trong Java
Converting Strings to Enums in Java
New in Spring Security OAuth2 – Verify Claims
Java Program to Generate a Random Subset by Coin Flipping
LIKE Queries in Spring JPA Repositories
Form Validation with AngularJS and Spring MVC
Spring Boot Configuration with Jasypt
Generate Spring Boot REST Client with Swagger
Spring MVC and the @ModelAttribute Annotation
Setting the Java Version in Maven
Guide to the Java Queue Interface
Serve Static Resources with Spring
Java Program to Find kth Smallest Element by the Method of Partitioning the Array
Java Program to implement Bit Matrix
Tính đóng gói (Encapsulation) trong java
Một số nguyên tắc, định luật trong lập trình
Java Program for Douglas-Peucker Algorithm Implementation
Convert Character Array to String in Java
Registration – Password Strength and Rules
Guide to Selenium with JUnit / TestNG
A Guide to ConcurrentMap
Split a String in Java
Guide to DelayQueue
Java Program to Implement a Binary Search Algorithm for a Specific Search Sequence
Java Program to Implement Network Flow Problem