[c++] 특정수 만들기(DFS), 병합정렬
특정수 만들기 #include /* run this program using the console pauser or add your own getch, system("pause") or input loop */ using namespace std; int n, m, ch[11], a[11], cnt=0, sum, total=0; void DFS(int L, int sum){ if(L==n+1) { if(sum==m) { cnt++; return; } } else { DFS(L+1, sum+a[L]); DFS(L+1, sum); DFS(L+1, sum-a[L]); } } int main() { int i; //freopen("input.txt", "rt", stdin); scanf("%d %d", &n, ..
lecture/algorithm - c++
2021. 1. 7. 00:56
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- 배열
- 클래스
- C
- 세마포어
- 알고리즘
- 운영체제
- client side rendering
- BFS
- react
- 입출력장치
- 최단경로
- dfs
- Java
- C++
- 이진탐색
- 스텍
- server side rendering
- 동적프로그래밍
- 구조체
- 퀵정렬
- 인접행렬
- 자료구조
- 병행프로세스
- 교착상태
- Stack
- stackframe
- 재귀함수
- 소프트웨어
- 인접리스트
- javascript
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함