1. 首页
  2. 编程语言
  3. C
  4. Dynamic Programming 01

Dynamic Programming 01

上传者: 2021-04-20 00:27:35上传 PDF文件 171.59KB 热度 23次
Dynamic Programming is mainly an optimization over plain recursion. Wherever we see a recursive solution that has repeated calls for same inputs, we can optimize it using Dynamic Programming. The idea is to simply store the results of subproblems, so that we do not have to re-comupute them when need
用户评论