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
- effective python
- hadoop2
- 파이썬
- 알고리즘
- RNN
- 하둡2
- 하이브
- 그래프이론
- tensorflow
- GRU
- 선형대수
- hive
- Sort
- HelloWorld
- collections
- C
- 딥러닝
- graph
- NumPy
- LSTM
- 텐서플로
- 주식분석
- C언어
- recursion
- python
- Java
- yarn
- scrapy
- 코딩더매트릭스
- codingthematrix
Archives
- Today
- Total
목록recursion응용 (1)
EXCELSIOR
Recursion의 응용: 미로찾기
1. Recursive Thinking 1) 현재 위치가 출구이거나 혹은 2) 이웃한 셀들 중 하나에서 현재 위치를 지나지 않고 출구까지 가는 경로가 있거나 3) Pseudo-code는 다음과 같이 나타낼 수 있다. boolean findPath(x,y) if (x, y) is the exit // 처음 위치가 출구일 경우 return true; else mark (x, y) as a visited cell; for each neighbouring cell (x', y') of (x, y) do if (x', y') is on the pathway and not visited // (x', y')가 길이고, 방문하지 않았을 경우 if findPath(x', y') // recursive return tr..
Algorithms
2016. 11. 11. 21:13