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
- 큐
- List
- set
- javascript
- Properties
- math
- GC로그수집
- Java
- BFS
- deque
- union_find
- sql
- 리소스모니터링
- 스프링부트
- string
- JPA
- 힙덤프
- scanner
- priority_queue
- NIO
- CSS
- map
- date
- alter
- dfs
- spring boot
- 스택
- Calendar
- Union-find
- html
Archives
- Today
- Total
목록재귀 (1)
매일 조금씩
백준 6603번 : 로또 [C++]
DFS와 비슷하게 재귀를 활용하면 풀수 있는 문제였다. #include #include //#include //memset #include using namespace std; const int MAX = 6; int K; int lotto[MAX]; int t[13]; //idx1은 t의 인덱스, idx2는 lotto의 인덱스 void printLotto(int idx1, int idx2) { if (idx2 == MAX) { for (int i = 0; i t[i]; } printLotto(0, 0); cout
알고리즘/Graph (DFS, BFS)
2020. 8. 9. 16:59