-->
当前位置:首页 > 题库

To solve a problem by dynamic programming instead of recursions,

Luz5年前 (2021-05-10)题库1367
To solve a problem by dynamic programming instead of recursions, the key approach is to store the results of computations for the subproblems so that we only have to compute each different subproblem once. Those solutions can be stored in an array or a hash table. ~@[](2)

答案:TRUE