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:
Java Program to Compute Discrete Fourier Transform Using the Fast Fourier Transform Approach
Adding Shutdown Hooks for JVM Applications
Guide to java.util.concurrent.Locks
Spring Cloud AWS – RDS
Java Program to Use Boruvka’s Algorithm to Find the Minimum Spanning Tree
Intro to Spring Boot Starters
Spring Boot - Code Structure
Java Program to Check the Connectivity of Graph Using DFS
Java Program to Delete a Particular Node in a Tree Without Using Recursion
Java Program to Implement Fibonacci Heap
Java Program to Implement Bloom Filter
Java Program to Implement RoleUnresolvedList API
Sử dụng JDBC API thực thi câu lệnh truy vấn dữ liệu
Remove HTML tags from a file to extract only the TEXT
Java Program to Perform Complex Number Multiplication
Java Program to Implement Slicker Algorithm that avoids Triangulation to Find Area of a Polygon
Java Program to Implement Ternary Tree
Marker Interface trong Java
Kết hợp Java Reflection và Java Annotations
Generate Spring Boot REST Client with Swagger
Java Program to Implement Suffix Array
Concatenating Strings In Java
OAuth2.0 and Dynamic Client Registration
Java Program to Implement Cubic convergence 1/pi Algorithm
Getting the Size of an Iterable in Java
Java Program to Find the Longest Path in a DAG
Java Program to Implement Dijkstra’s Algorithm using Queue
Java Program to Implement LinkedTransferQueue API
Java Program to Implement Quick Sort with Given Complexity Constraint
Configuring a DataSource Programmatically in Spring Boot
Java Program to Implement the String Search Algorithm for Short Text Sizes
Using the Map.Entry Java Class