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
- 하이브
- scrapy
- yarn
- 선형대수
- codingthematrix
- collections
- Sort
- 파이썬
- 알고리즘
- NumPy
- GRU
- C
- C언어
- hive
- 텐서플로
- 코딩더매트릭스
- 주식분석
- 딥러닝
- RNN
- hadoop2
- tensorflow
- HelloWorld
- LSTM
- Java
- effective python
- 하둡2
- graph
- 그래프이론
- recursion
- python
Archives
- Today
- Total
목록미로찾기 (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