普通方法求素数与筛法求素数比較

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了普通方法求素数与筛法求素数比較相关的知识,希望对你有一定的参考价值。

普通方法求素数与筛法求素数比較
20150806

package day06;

/*
 * 普通方法求素数与筛法求素数比較
 */
import java.util.*;

public class TestSushu {

	public static void main(String[] args) {
		Scanner scan = new Scanner(System.in);
		System.out.print("查找范围2~");
		int n = scan.nextInt();
		
		long s1=System.currentTimeMillis();
		//1--普通方法求素数
		int count1 = 0;
		for(int i=2,j=0;i<=n;i++){
			int temp=(int)(Math.sqrt(i));
			for(j=2;j<=temp;j++){
				if(i%j==0){
					break;
				}
			}
			if(j>temp){
				//System.out.print(i+"\t");
				count1 ++;
				if(count1%15==0){
					//System.out.println();
				}
			}			
		}
		System.out.println("\n"+"2~"+n+"共同拥有"+count1+"个素数");
		long e1=System.currentTimeMillis();
		System.out.println("time1="+(e1-s1));
		System.out.println("******************");
		
		long s2=System.currentTimeMillis();
		//2--筛法求素数
		boolean[] b = new boolean[n+1];
		b[0]=b[1]=true;
		for(int i=2;i<b.length;i++){
			if(!b[i]){
				for(int j=i*2;j<b.length;j+=i){
					b[j]=true;
				}
			}
		}
		int count2 = 0;
		for(int i=2;i<b.length;i++){
			if(!b[i]){
				//System.out.print(i+"\t");
				count2++;
				if(count2%15==0){
					//System.out.println();
				}
			}
		}
		System.out.println("\n"+"2~"+n+"共同拥有"+count2+"个素数");
		long e2=System.currentTimeMillis();
		System.out.println("time2="+(e2-s2));
		
	}

}


筛法求素数原理:

技术分享


总结:筛法求素数速度更快,尤其是数据比較大的时候















以上是关于普通方法求素数与筛法求素数比較的主要内容,如果未能解决你的问题,请参考以下文章

转载一般筛法求素数+快速线性筛法求素数

筛法求素数

基础算法——筛法求素数

筛法求素数

欧拉筛法求素数

筛法求素数