01背包问题实现探究

Posted 薄暮渔樵~爱搁浅

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了01背包问题实现探究相关的知识,希望对你有一定的参考价值。

参考博文http://blog.csdn.net/mu399/article/details/7722810

另外bilibili有个讲背包01的视频也挺生动的。

<?php
//背包01问题
class Item{
    public $weight;
    public $value;
    public function __construct($weight,$value){
        $this->weight = $weight;
        $this->value = $value;
    }
}
class Bag{
    private $items;
    public function __construct($items){
        $this->items = $items;
    }
    private  $resultMap = array();
    function bestBag($k,$w){
        if($k==0 || $w==0){
            return 0;
        }
        if(isset($this->resultMap[$k][$w])){
            return $this->resultMap[$k][$w];
        }
        if($k==1) {
            if ($this->items[$k]->weight > $w) {
                return 0;
            } else {
                return $this->items[$k]->value;
            }
        }
        $res1 = $this->bestBag($k-1,$w);
        if($w-$this->items[$k]->weight>0){
            $res2 = $this->bestBag($k-1,$w-$this->items[$k]->weight)+$this->items[$k]->value;
        }else{
            $res2 = 0;
        }
        $result = max($res1,$res2);
        if(!isset($this->resultMap[$k][$w])){
            $this->resultMap[$k][$w] = $result;
        }
        return $result;
    }
}

$items = array();
for($i = 1;$i<6;$i++){
    $item = new Item($i,$i+3);
    $items[$i] = $item;
}
print_r($items);
$bagTest = new Bag($items);
echo $bagTest->bestBag(5,60);exit;

 

以上是关于01背包问题实现探究的主要内容,如果未能解决你的问题,请参考以下文章

动态规划——背包问题python实现(01背包完全背包多重背包)

01背包

防止导航到同一个片段

01背包java实现(入门到精通)

01背包问题(Java实现)

0-1背包问题的回溯法代码