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
- dfs
- 따라하며 배우는 C언어
- 종만북
- String
- udemy
- Algospot
- Python
- BASIC
- 인프런
- Algorithm
- graph
- C언어
- C
- 생활코딩
- 정수론
- programmers
- Math
- 따라하면서 배우는 C언어
- php
- sorting
- web
- DP
- 따배씨
- 백준
- BOJ
- greedy
- JavaScript
- BFS
- server
- Cleancode
Archives
- Today
- Total
몽상실현개발주의
[DP] Memorization 과 Tabulation 본문
[DP] Memorization 과 Tabulation
DP : Dynamic Programing 의 방법은 Memorization 과 Tabulation 이 있다.
1. Memoization
Memorization - 기억, 암기.
재귀를 이용하여 값을 위에서부터 계산하기 때문에 하향식 접근(top-down approach) 방식.
cache에 값을 기록하여 중복 계산을 방지.
# fibonacci
def fibonacci(n, memo):
if n < 3:
memo[n] = 1
return memo[n]
# n번째 피보나치값이 memo 에 있을경우
if memo[n]:
return memo[n]
# n 번째 값을 계산하지 않았을 경우, 재귀호출로 계산 후 Memorization
memo[n] = fibonacci(n-1, memo) + fibonacci(n-2, memo)
return memo[n]
2. Tabulation
Tabulation - 도표 작성, 표, 목록
밑에서부터 값을 계산하기 때문에 상향식 접근(bottom-up approach)방식.
리스트에 값을 기록.
# fibonacci
def fibonacci(n):
table = [0, 1]
# 점화식을 이용하여 n 까지 구하기
for i in range(2, n + 1):
table.append(table[i - 1] + table[i - 2])
return table[n]
참고 블로그
https://velog.io/@nninnnin7/Dynamic-programming-1
'Language > Algorithm' 카테고리의 다른 글
[자료구조] 그래프 Graph (0) | 2021.06.13 |
---|---|
[알고리즘 기초] 03_문자열(string) / Python (0) | 2021.06.09 |
[알고리즘 기초] 02_배열 2 (Array 2) / Python (0) | 2021.06.08 |
[알고리즘 기초] 01_배열 1 (Array 1) / Python (0) | 2021.06.08 |
[알고리즘 기초] 00_intro ASP (Algorithm Problem Solving) / Python (0) | 2021.06.08 |
Comments