码迷,mamicode.com
首页 > 编程语言 > 详细

C++实现Miller-Rabin素数测试

时间:2015-08-10 14:52:29      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:

原理参见《离散数学》P201

#include<iostream>
#include<cstdlib>
#include<ctime>
#include<cmath>

using namespace std;

bool Miller_Rabin(long long n)
{
	if(n < 2)
		return false;
	else if(n == 2)
		return true;
	
	long long q = 0, m = n - 1;
	while(m % 2 == 0) {
		m /= 2;
		++q;
	}

	long long a = rand()%(n-2)+2;
	long long x1 = (long long)pow(a, m) % n, x2;

	for(int i = 1; i <= q; ++i) {
		x2 = (x1*x1) % n;
		if(x2 == 1 && x1 != 1 && x1 != n-1)
			return false;
		x1 = x2;
	}

	if(x2 != 1)
		return false;
	else
		return true;
}


int main(void) 
{
	srand((unsigned)time(NULL));
	long long num;
	while(cin >> num) {
		if(num > 1) {
			if(Miller_Rabin(num))
				cout << "true" << endl;
			else
				cout << "false" << endl;
		}
	}

	return 0;
}


版权声明:本文为博主原创文章,未经博主允许不得转载。

C++实现Miller-Rabin素数测试

标签:

原文地址:http://blog.csdn.net/qq_21555605/article/details/47398097

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!