250x250
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 | 29 | 30 | 31 |
Tags
- Calendar
- CSS
- 큐
- spring boot
- set
- priority_queue
- 스택
- Properties
- html
- List
- alter
- JPA
- 리소스모니터링
- NIO
- Java
- map
- scanner
- sql
- union_find
- GC로그수집
- math
- 스프링부트
- BFS
- date
- dfs
- deque
- string
- javascript
- 힙덤프
- Union-find
Archives
- Today
- Total
목록BFS (7)
매일 조금씩

DFS와 BFS에 관한 개념문제라고 볼수 있다. 아래 포스팅을 보고 풀었다. https://jaimemin.tistory.com/561 백준 1260번 DFS와 BFS 문제 링크입니다: https://www.acmicpc.net/problem/1260 자료구조 시간에서 다루었던 BFS(Breadth First Search)와 DFS(Depth First Search)를 복습할 겸 풀어봤던 문제였습니다. 실제로 BFS와 DFS는 자주 다루어.. jaimemin.tistory.com DFS는 재귀를 사용하여 풀었고 BFS는 큐를 사용하여 풀었다. #include #include #include //memset using namespace std; const int MAX = 1000 + 1; int N, M..
알고리즘/Graph (DFS, BFS)
2020. 5. 1. 20:33