首页 > 代码库 > 普通方法求素数与筛法求素数比較
普通方法求素数与筛法求素数比較
普通方法求素数与筛法求素数比較
20150806
筛法求素数原理:
总结:筛法求素数速度更快,尤其是数据比較大的时候
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)); } }
筛法求素数原理:
总结:筛法求素数速度更快,尤其是数据比較大的时候
普通方法求素数与筛法求素数比較
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。