Develop
2013.04.23 14:07
[java] Sieve of Eratosthenes (에라토스테네스의 체)
조회 수 10464 댓글 0
소수를 구하는 또다른 방법입니다.
러닝타임은 N + N/2 + N/3 + N/5 + N/7 + N/11 + ....
class Primes {
public static void main(String[] args) {
int num = 100;
if (args.length > 0)
num = Integer.parseInt(args[0]);
getPrime(num);
}
public static void getPrime(int max) {
boolean[] a = new boolean[max];
for (int i = 2; i < max; i++)
a[i] = true;
int to = (int)Math.sqrt(max);
for (int i = 2; i < to; i++)
if (a[i] != false)
for (int j = i; j*i < max; j++)
a[i*j] = false;
for (int i = 2; i < max; i++)
if (a[i])
System.out.print(" " + i);
System.out.println();
}
}
[출처] http://blog.naver.com/charityno3?Redirect=Log&logNo=80006915007
-
[c#] BFilter 툴바 소스 코드 ㅎㅎ
-
[c] 코드 최적화에 대해..
-
[c] 프로그램 코드(c/c++)를 html 파일로 변환
-
[js] 이미지 사이즈를 동적으로 조절..
-
HTTPS와 SSL 인증서
-
[c] 농구팀 점수 산출 프로그램 소스
-
[c] 단기과정[01/08] 과제.. 파스칼 삼각형
-
[c] 정수를 2진수로 변환 (재귀,비트연산)
-
[java] 컴포넌트 배치 ㅡ.,ㅡ;
-
[php] 데이터를 엑셀,워드 형태로 변환할 때 헤더(ms-office)
-
[c] 프로세스 정보 출력하기..
-
[mysql] CPU 점유율이 높을 때 확인할 내용