+ 1
Can any one explain me , how to master Dynamic Programming?
4 ответов
+ 5
Try to understand the classic coin change problem...the solution is on the web and in most algorithmics books.
+ 2
For C++/Java/C#:
-Understand what is POLYMORPHISM
-Understand what pointers really do
-Understand how to manipulate inputs with TYPE-CASTING
These 3 elements of dynamic programming is essential.
You can manipulate/change objects with some polymorpism stuff like design patterns for object-oriented programming.
+ 1
Try the knapsack problem. It has a very intuitive solution via dynamic programming.
0
What do you mean by that ?