首页 > 开发 > PHP > 正文

PHP贪婪算法解决0-1背包问题实例分析

2024-05-04 23:33:12
字体:
来源:转载
供稿:网友

这篇文章主要介绍了PHP贪婪算法解决0-1背包问题,实例分析了贪婪算法的原理与背包问题的实现技巧,需要的朋友可以参考下

本文实例讲述了PHP贪婪算法解决0-1背包问题的方法。分享给大家供大家参考。具体分析如下:

贪心算法解决0-1背包问题,全局最优解通过局部最优解来获得!比动态规划解决背包问题更灵活!

 

 
  1. //0-1背包贪心算法问题 
  2. class tanxin{ 
  3. public $weight
  4. public $price
  5. public function __construct($weight=0,$price=0) 
  6. $this->weight=$weight
  7. $this->price=$price
  8. //生成数据 
  9. $n=10; 
  10. for($i=1;$i<=$n;$i++){ 
  11. $weight=rand(1,20); 
  12. $price=rand(1,10); 
  13. $x[$i]=new tanxin($weight,$price); 
  14. //输出结果 
  15. function display($x
  16. $len=count($x); 
  17. foreach($x as $val){ 
  18. echo $val->weight,' ',$val->price; 
  19. echo '<br>'
  20. //按照价格和重量比排序 
  21. function tsort(&$x
  22. $len=count($x); 
  23. for($i=1;$i<=$len;$i++) 
  24. for($j=1;$j<=$len-$i;$j++) 
  25. {  
  26. $temp=$x[$j]; 
  27. $res=$x[$j+1]->price/$x[$j+1]->weight; 
  28. $temres=$temp->price/$temp->weight; 
  29. if($res>$temres){ 
  30. $x[$j]=$x[$j+1]; 
  31. $x[$j+1]=$temp
  32. }  
  33. //贪心算法 
  34. function tanxin($x,$totalweight=50) 
  35. $len=count($x); 
  36. $allprice=0; 
  37. for($i=1;$i<=$len;$i++){ 
  38. if($x[$i]->weight>$totalweightbreak
  39. else
  40. $allprice+=$x[$i]->price; 
  41. $totalweight=$totalweight-$x[$i]->weight; 
  42. if($i<$len$allprice+=$x[$i]->price*($totalweight/$x[$i]->weight); 
  43. return $allprice
  44. tsort($x);//按非递增次序排序 
  45. display($x);//显示 
  46. echo '0-1背包最优解为:'
  47. echo tanxin($x); 

希望本文所述对大家的php程序设计有所帮助。

发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表