자바 : 모든 경우의 수(재귀)
package com.company.CodeTest; import java.util.ArrayList; public class MainOrc { static int YAK, target; static int[] yakList, cand, used; static ArrayList alist; static void input() { yakList = new int[]{0, 2, -900, 2000, 5, 500}; // 약리스트 YAK = 5; // 약 갯수 cand = new int[]{0,0,0,0,0,0}; used = new int[]{0,0,0,0,0,0}; target = 3000; alist = new ArrayList(); } public static void main(String[] args..
프로그래밍/알고리즘
2021. 12. 4. 02:06