Skip to content

Commit 8b740d2

Browse files
authored
ajouter tabulation vs memoization
1 parent 54be7df commit 8b740d2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Recursion and Dynamic Programming Implementation
22

3-
This is a repository for Julia/Python algorithm learning. Hopefully it can help you along your way towards mastering recursion algorithms and dynamic programming. Please refer to the following link for the details of recursion and dynamic programming in Python.
3+
This is a repository for Julia/Python algorithm learning. Hopefully it can help you along your way towards mastering recursion algorithms and dynamic programming. As we all know, there are two approaches to do dynamic programming, tabulation (bottom up, solve small problem then the bigger ones) and memoization (top down, solve big problem then the smaller ones). In this repository, tabulation will be categorized as dynamic programming and memoization will be categorized as optimization in recursion. Please refer to the following link for the details of recursion and dynamic programming in Python.
44

55
http://interactivepython.org/runestone/static/pythonds/index.html
66

0 commit comments

Comments
 (0)