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