조합 알고리즘( N개에서 C개 뽑기 ) - JAVA 자바
코드 상에서 N은 5, C는 3이다. 순열과 조합에서 조합은 순서가 없는 것이 특징이다. (-> {1, 2, 3} = {2, 1, 3} = {3, 1, 2} 다 같은것으로 취급 ) public class example { static int[] a = {1, 2, 3, 4, 5}; static boolean[] a_b = {false, false, false, false, false}; public static void main(String args[]) { combination(0, 1); } public static void print_arr() { for(int i =0; i< a_b.length; i++) { if(a_b[i]) System.out.print(""+a[i]+" "); } Syste..
2020. 9. 12.