981 views
0 votes
0 votes
Just practicing some general problems on dynamic programming.Problem is I am unable to think of tabulation or bottom up approach for most of the new type of problems other than common ones.I am trying to get the naive recursion first then using memoization easily to optimize.Can someone who is in good peak of programming at this moment let me know how to get some idea of tabulating easily?..For example take coin exchange problem.

Please log in or register to answer this question.

Related questions

3 votes
3 votes
2 answers
1
iarnav asked Jun 3, 2018
5,137 views
Time complexity of Multistage Graph is O(n2) or O(V2) but then some people says it's O(E). So, from O(V2) to O(E) are they taking about dense/complete graphs in which num...