일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- ChIPseq
- julia
- single cell
- CUTandRUN
- CSS
- 싱글셀 분석
- javascript
- cellranger
- Git
- single cell analysis
- DataFrame
- ngs
- HTML
- pandas
- PYTHON
- drug development
- 비타민 C
- MACS2
- python matplotlib
- EdgeR
- js
- scRNAseq analysis
- github
- Bioinformatics
- matplotlib
- CUT&RUN
- scRNAseq
- Batch effect
- drug muggers
- single cell rnaseq
Archives
- Today
- Total
바이오 대표
[ Algorithm ] Recursion 재귀 Algorithm 본문
Function 안에 같은 function을 이용하는 것을 recursion(재귀) 라고 한다.
예시)
# Factorial function
def f(n):
# Stop condition
if (n == 0 or n == 1):
return 1;
# Recursive condition
else:
return n * f(n - 1);
n = 5;
print(f(n)) #120
n * f(n-1)
5 * f(4) = 5 * 24 = 120
f(4) = 4 * f(3) 4*6 = 24
f(3) = 3 * f(2) = 3*2 = 6
f(2) = 2 * f(1) = 2*1 = 2
'Python > others' 카테고리의 다른 글
[py.click] click pakage로 python package 만들기 (0) | 2023.06.12 |
---|---|
[ Python ] 교차 검증 (Cross Validation) - sklearn.Kfold (0) | 2022.02.15 |
[ sys ] python 으로 object 의 메모리 크기 알아내기 - getsizeof( ) (0) | 2022.02.10 |