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