Contents

조회 수 9337 댓글 0
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
?

단축키

Prev이전 문서

Next다음 문서

크게 작게 위로 아래로 댓글로 가기 인쇄
소수를 구하는 또다른 방법입니다.

러닝타임은 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


?

List of Articles
번호 분류 제목 글쓴이 날짜 조회 수
801 Develop [php] php5.3부터는 eregi()대신 preg_match()를 사용 hooni 2013.11.18 12477
800 System/OS [sql] alter table 쿼리 예제 hooni 2003.04.23 12459
799 System/OS [linux] DNS(Domain Name System) 설치, 설정 hooni 2003.04.23 12441
798 System/OS [linux] root도 삭제하지 못하는 파일 속성 hooni 2003.04.23 12412
797 Develop [api] 인스타그램에서 최신 이미지 가져오기 (Using Instagram API) 20 file hooni 2018.04.05 12405
796 System/OS [linux] X환경 GNOME에서 KDE로 바꾸는 법.. hooni 2013.04.23 12367
795 System/OS [mac] Charlesproxy 간단한 설정 내용~ hooni 2013.11.12 12332
794 Develop [c++] 자료구조(링크리스트,스택,큐)와 후위 표기 계산기 샘플 ㅋㅋ 4 file hooni 2013.04.23 12325
793 System/OS [linux] iconv를 이용하여 euc-kr 문서를 utf-8로 대량으로 변환하기 file hooni 2014.01.09 12221
792 Develop [php] 하루 전 날짜 쉽게 구하기. hooni 2013.12.25 12215
791 System/OS [linux] 파일내 문자열 찾아 바꾸기 hooni 2013.04.23 12195
790 PPT [doc] 정보보호학술대회 논문지 ㅋㅋ file hooni 2013.04.23 12178
Board Pagination Prev 1 ... 27 28 29 30 31 32 33 34 35 36 ... 98 Next
/ 98