Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 백준 2870번
- c++
- Beakjoon
- 오브젝트 풀링
- 백준 17070번 c++
- Unity
- 2870번 수학숙제 c++
- 2870번 수학숙제
- 수학숙제
- 프로그래머스
- 백준
- Lv2
- Algorithm
- 2870번 c++
- 2870번
- 플레이어 이동
- Lv.3
- 유니티
- 코테
- 백준 1103번 c++
- 17070번
- C#
- dfs
- 백준 1103번
- 백준 1103번 게임
- 백준 17070번
- 백준 c++ 2468번
- 2468 c++
- 백준 c++ 2870번
- 코딩테스트
Archives
- Today
- Total
목록Depth First Search (1)
주녘공부일지
[Algorithm C#] BFS, DFS ( + Back Tracking )
1. BFS(Breadth First Search) - 너비 우선 탐색최단 경로, 임의의 경로를 찾고 싶을 때, 등에 사용- 큐(FIFO) 사용 // 큐를 이용 public void BFS(int index) { Node root = nodes[index]; Queue queue = new Queue(); queue.Enqueue(root); root.marked = true; while (queue.Count > 0) { var node = queue.Dequeue(); for (int i = 0; i 2. DFS(Depth First Search) - 깊이 우선 탐색조합류..
Programming/Algorithm
2023. 3. 9. 17:12