This is a Java Program to Implement Pollard Rho Algorithm. Pollard Rho algorithm is a general purpose factorization algorithm. It is particularly effective at splitting composite numbers with small factors.
Here is the source code of the Java Program to Implement Pollard Rho Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/**
** Java Program to implement Pollard Rho Algorithm
**/
import java.util.Scanner;
/** Class PollardRho **/
public class PollardRho
{
private static final long C = 1;
/** function X * X + C, change value of C as required **/
private long f(long X)
{
return X * X + C;
}
/** get divisor **/
private long rho(long N)
{
long x1 = 2, x2 = 2, divisor;
if (N % 2 == 0)
return 2;
do
{
x1 = f(x1) % N;
x2 = f(f(x2)) % N;
divisor = gcd(Math.abs(x1 - x2), N);
} while (divisor == 1);
/** return divisor **/
return divisor;
}
/** GCD of two numbers **/
public long gcd(long p, long q)
{
if (p % q == 0)
return q;
return gcd(q, p % q);
}
/** Check if num is prime **/
public boolean isPrime(long N)
{
for (int i = 2; i <= Math.sqrt(N); i++)
if (N % i == 0)
return false;
return true;
}
/** get all factors **/
public void factor(long N)
{
if (N == 1)
return;
if (isPrime(N))
{
System.out.println(N);
return;
}
long divisor = rho(N);
factor(divisor);
factor(N / divisor);
}
/** Main function **/
public static void main(String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Pollard Rho Algorithm\n");
System.out.println("Enter a number");
long N = scan.nextLong();
System.out.println("\nFactors are : ");
PollardRho pr = new PollardRho();
pr.factor (N);
}
}
Output:
Pollard Rho Algorithm Enter a number 2406 Factors are : 2 3 401
Related posts:
Serverless Functions with Spring Cloud Function
Java Program to Implement Hash Tables chaining with Singly Linked Lists
Spring 5 Functional Bean Registration
Java Program to Generate All Possible Combinations of a Given List of Numbers
Tạo ứng dụng Java RESTful Client với thư viện OkHttp
Hướng dẫn Java Design Pattern – Transfer Object
Java Program to Compute Discrete Fourier Transform Using the Fast Fourier Transform Approach
Logging in Spring Boot
The Spring @Controller and @RestController Annotations
Một số tính năng mới về xử lý ngoại lệ trong Java 7
“Stream has already been operated upon or closed” Exception in Java
Java Program to Compute Discrete Fourier Transform Using Naive Approach
Control the Session with Spring Security
Java Program to Implement Gift Wrapping Algorithm in Two Dimensions
A Guide to Iterator in Java
Java Program to Use Above Below Primitive to Test Whether Two Lines Intersect
Comparing Objects in Java
Hướng dẫn Java Design Pattern – Chain of Responsibility
So sánh ArrayList và Vector trong Java
Registration with Spring Security – Password Encoding
Registration – Password Strength and Rules
Base64 encoding và decoding trong Java 8
Understanding Memory Leaks in Java
Java Program to Find Hamiltonian Cycle in an UnWeighted Graph
Java Program to Implement an Algorithm to Find the Global min Cut in a Graph
Java Program to Implement Treap
Hướng dẫn sử dụng biểu thức chính quy (Regular Expression) trong Java
Introduction to the Java ArrayDeque
Lớp LinkedHashMap trong Java
Allow user:password in URL
A Guide to JUnit 5 Extensions
Guide to Escaping Characters in Java RegExps