DFS package study.blog.codingnojam; public class Study_DFS_Recursion { // 방문처리에 사용 할 배열선언 static boolean[] vistied = new boolean[9]; // 그림예시 그래프의 연결상태를 2차원 배열로 표현 static int[][] graph = {{}, {2,3,8}, {1,6,8}, {1,5}, {5,7}, {3,4,7}, {2}, {4,5}, {1,2}}; public static void main(String[] args) { dfs(1); } static void dfs(int nodeIndex) { // 방문 처리 vistied[nodeIndex] = true; // 방문 노드 출력 System.out.pri..