일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- android adapterview
- 안드로이드
- 액티비티 ANR
- support fragment
- 백준
- 안드로이드 AdapterView
- 자바 컬렉션
- 안드로이드 DBMS
- Github
- BFS
- SQLite와 Realm 차이점
- android fragment
- 소수 알고리즘
- 자료구조
- java
- support 라이브러리
- application not responding
- 소수
- 알고리즘
- 안드로이드 ANR
- 너비우선탐색
- 백준 알고리즘
- 안드로이드 파일
- DFS
- oracle
- 컬렉션
- android support
- 깊이우선탐색
- db
- anr
Archives
- Today
- Total
목록BFS (2)
밍의 기록들😉
[문제] 깊이우선탐색과 너비우선탐색
문제 소스코드import java.util.*; public class bfsdfs { static ArrayList[] a; static boolean[] check; public static void main(String[] args) { Scanner sc = new Scanner(System.in); String[] input = sc.nextLine().split(" "); int n = Integer.parseInt(input[0]); int m = Integer.parseInt(input[1]); a = (ArrayList[]) new ArrayList[n+1]; for(int i=1; i
자료구조, 알고리즘/문제풀이
2018. 9. 9. 21:26
[그래프] 그래프의 탐색 (DFS, BFS)
그래프의 탐색DFS : 깊이 우선 탐색BFS : 너비 우선 탐색 깊이 우선 탐색(DFS; Depth First Search)스택(=선행관계)을 이용하여 그래프를 탐색하는 방법나를 먼저 방문하고, 그 다음으로 인접한 노드를 차례로 방문(단, 방문했던 노드는 방문하지 않음)스택을 이용해서 갈 수 있는 만큼 최대한 많이 가고 갈 수 없으면 이전 정점으로 돌아간다. 인접 행렬을 이용한 구현 코드private static void dfs(int x) { check[x] = true; System.out.print(x); for(int i=1; i
자료구조, 알고리즘/기본다지기
2018. 9. 8. 19:46