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
- NumPy
- python
- 빅오 표기법
- 배열 섞기
- Big-Oh 예제
- 빅오메가
- 코틀린 시작하기
- itertools
- trivial solution
- nonhomogeneous linear system
- Big Omega
- 코틀린 Hello World!
- solutions of matrix equation
- nontrivial solution
- matrix trnasformations
- homogeneous linear system
- 이진 탐색
- 빅세타
- matrix-vector product
- one-to-one
- Big-O 예제
- 재귀함수
- 랜덤 순서 배열
- linear dependence
- 알고리즘 분석의 실례
- 일차변환
- recursive algorithms
- Big-Oh notation
- Big Theta
- matrix fo a linear transformation
Archives
- Today
- Total
목록팩토리알 (1)
코딩 연습
(재귀함수) $n!$ ($n$ 의 계승) 구하기
재귀함수(recursive function) 이란 함수내에서 자기 자신을 호출하는 함수이다. 재귀함수가 어떤 식으로 동작하는지는 재귀함수를 이용하여 $n!$ 을 구해보면 쉽게 알 수 있다.$n!$ 은 혹은 $n$ 의 계승은 다음과 같이 $1$ 부터 $n$ 까지의 곱으로 정의된다.$$ n! = \prod \limits_{k=1}^n k= n \times (n-1) \times \cdots \times 2 \times 1$$물론 루프(loop)를 이용하여 $n!$ 을 구할 수 있지만, 재귀함수를 이용할 수도 있다. 재귀함수를 이용한 $n!$ 구하기 파이썬 코드는 다음과 같다. def factorial(n): if n == 0: return 1 else: return n * factorial(n - 1) nu..
알고리즘
2017. 4. 29. 07:41