Skip to content

Commit

Permalink
ajouter tabulation vs memoization
Browse files Browse the repository at this point in the history
  • Loading branch information
je-suis-tm authored Jun 29, 2020
1 parent 54be7df commit 8b740d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Recursion and Dynamic Programming Implementation

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.
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.

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

Expand Down

0 comments on commit 8b740d2

Please sign in to comment.