본문 바로가기

알고리즘

재귀 유용한 틀(1)

import java.util.ArrayList;

public class Main {
	public static ArrayList<Integer> arrList = new ArrayList();
	public static int n = 11;
	public static int cnt=0;
	public static void main(String[] args) {
		f(0,0);
		System.out.println("cnt:"+cnt);
	}

	private static void f(int depth, int y) {
		if(depth==n) 
		{
			System.out.println(arrList.toString());
			cnt+=1;
			return;
		}
		else if(y==12){return;}
		arrList.add(y);
		f(depth+1,y+1);
		int len = arrList.size();
		arrList.remove(len-1);
		f(depth,y+1);
	}
}

 

'알고리즘' 카테고리의 다른 글

이진탐색  (0) 2019.09.22
보호필름[모의문제]  (0) 2019.09.17
수영장  (0) 2019.09.04
대표값  (0) 2019.08.13
미로 탐색  (0) 2019.08.09