首页 > 代码库 > 0-1背包问题(the knapsack problem)

0-1背包问题(the knapsack problem)

---恢复内容开始---

  关键原理:动态规划。

    tab[i][j] = max(tab[i-1][j-weight[i]]+value[i],tab[i-1][j]) ({i,j|0<i<=n,0<=j<=total})

    i表示放第i个物品,j表示背包所容纳的重量,那么tab[i-1][j-weight[i]]+value[i]表示放入第i物品。

流程:

 

技术分享

技术分享

技术分享

状态转移方程:

技术分享

 

0-1背包问题(the knapsack problem)