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
- C언어
- 하이브
- C
- 주식분석
- Sort
- 딥러닝
- LSTM
- 알고리즘
- scrapy
- 하둡2
- codingthematrix
- 선형대수
- python
- 코딩더매트릭스
- hadoop2
- Java
- hive
- effective python
- recursion
- graph
- tensorflow
- 텐서플로
- collections
- 파이썬
- 그래프이론
- GRU
- NumPy
- RNN
- HelloWorld
- yarn
Archives
- Today
- Total
목록iteration (1)
EXCELSIOR
Recursion의 개념과 기본 예제들 - 2
1. 문자열의 길이 계산 1) Base Case : 문자열 값이 null 인 경우 → return 0; 2) Recursive Case : 첫번째 문자를 제외한 길이 + 1을 return 한다. public class RecursionTest { public static void main(String[] args) { System.out.println(length("test")); } public static int length(String str){ if(str.equals("")) return 0; else return 1+length(str.substring(1)); // 차례대로 est -> st -> t return } } 2. 문자열을 뒤집어 프린트 public class RecursionTe..
Algorithms
2016. 11. 10. 21:54