250x250
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- 중복조합
- N과M
- 전화번호속의암호
- 백준2251
- 백준
- BFS
- 자바
- 백준13458
- 23288
- 에라토스테네스의채
- 알고리즘
- Bfs와DFS
- 자바 코테
- java
- 완전탐색
- 삼성역테
- 알고리즘개념
- 중복순열
- D드라이브생성
- 순열
- 코테준비
- 파티션 크기 조정
- 정보처리기사
- 완탐
- 정올 1620
- 볼륨 만들기
- 주사위굴리기2
- 재귀함수
- 코테
- 백준15652
Archives
- Today
- Total
목록자바완탐 (1)
뚱땅뚱땅
[개념] 완전 탐색 기법 - 순열, 조합, 중복 순열, 중복 조합 편 (Java)
코테에서 기본의 기본이 되는 완전탐색 기법! 아래의 코드를 충분히 익혀 완탐 문제는 틀리지 않도록 연습하자. import java.util.Scanner; public class Main { static int[] arr = { 1, 2, 3, 4, 5, 6 }; static int M; static int pCnt = 0, cCnt = 0, ppCnt = 0, ccCnt = 0; public static void main(String[] args) { Scanner sc = new Scanner(System.in); M = sc.nextInt(); //1. 순열 perm(0, new int[M], new boolean[arr.length]); System.out.println("순열: "+ pCnt);..
알고리즘/개념
2021. 7. 13. 13:54