This is a Java Program to Implement Miller Rabin Primality Test Algorithm. Miller Rabin Primality Test is an algorithm which is used to determine if a given number is prime or not.
Here is the source code of the Java Program to Implement Miller Rabin Primality Test Algorithm. The Java program is successfully compiled and run on a Windows system. The program output is also shown below.
/**
** Java Program to Implement Miller Rabin Primality Test Algorithm
**/
import java.util.Scanner;
import java.util.Random;
import java.math.BigInteger;
/** Class MillerRabin **/
public class MillerRabin
{
/** Function to check if prime or not **/
public boolean isPrime(long n, int iteration)
{
/** base case **/
if (n == 0 || n == 1)
return false;
/** base case - 2 is prime **/
if (n == 2)
return true;
/** an even number other than 2 is composite **/
if (n % 2 == 0)
return false;
long s = n - 1;
while (s % 2 == 0)
s /= 2;
Random rand = new Random();
for (int i = 0; i < iteration; i++)
{
long r = Math.abs(rand.nextLong());
long a = r % (n - 1) + 1, temp = s;
long mod = modPow(a, temp, n);
while (temp != n - 1 && mod != 1 && mod != n - 1)
{
mod = mulMod(mod, mod, n);
temp *= 2;
}
if (mod != n - 1 && temp % 2 == 0)
return false;
}
return true;
}
/** Function to calculate (a ^ b) % c **/
public long modPow(long a, long b, long c)
{
long res = 1;
for (int i = 0; i < b; i++)
{
res *= a;
res %= c;
}
return res % c;
}
/** Function to calculate (a * b) % c **/
public long mulMod(long a, long b, long mod)
{
return BigInteger.valueOf(a).multiply(BigInteger.valueOf(b)).mod(BigInteger.valueOf(mod)).longValue();
}
/** Main function **/
public static void main (String[] args)
{
Scanner scan = new Scanner(System.in);
System.out.println("Miller Rabin Primality Algorithm Test\n");
/** Make an object of MillerRabin class **/
MillerRabin mr = new MillerRabin();
/** Accept number **/
System.out.println("Enter number\n");
long num = scan.nextLong();
/** Accept number of iterations **/
System.out.println("\nEnter number of iterations");
int k = scan.nextInt();
/** check if prime **/
boolean prime = mr.isPrime(num, k);
if (prime)
System.out.println("\n"+ num +" is prime");
else
System.out.println("\n"+ num +" is composite");
}
}
Output:
Miller Rabin Primality Algorithm Test Enter number 5510389 Enter number of iterations 2 5510389 is prime
Related posts:
Java Program to Implement Gift Wrapping Algorithm in Two Dimensions
Changing Annotation Parameters At Runtime
Spring Boot - Building RESTful Web Services
Java Program to Perform Preorder Recursive Traversal of a Given Binary Tree
Convert XML to JSON Using Jackson
Java Program to Check Whether a Directed Graph Contains a Eulerian Path
Using a Mutex Object in Java
Registration with Spring Security – Password Encoding
Retrieve User Information in Spring Security
ArrayList trong java
Java Program to Implement Fisher-Yates Algorithm for Array Shuffling
Spring Data MongoDB – Indexes, Annotations and Converters
Spring Cloud AWS – Messaging Support
Java Program to Implement Brent Cycle Algorithm
Deploy a Spring Boot App to Azure
Java Program to Implement Binary Tree
Spring Boot - Tracing Micro Service Logs
Working with Kotlin and JPA
Spring Boot - CORS Support
Ignore Null Fields with Jackson
Quick Guide to @RestClientTest in Spring Boot
Phân biệt JVM, JRE, JDK
Java Program to Implement Sorted Vector
Using Java Assertions
Java Program to Check Whether a Weak Link i.e. Articulation Vertex Exists in a Graph
Creating a Generic Array in Java
Jackson vs Gson
Validate email address exists or not by Java Code
Spring 5 and Servlet 4 – The PushBuilder
Constructor Injection in Spring with Lombok
Thực thi nhiều tác vụ cùng lúc như thế nào trong Java?
Testing in Spring Boot