当前位置:   article > 正文

分支限界法求解01背包(优先队列)【java】_使用分支限界法解决0-1背包问题java

使用分支限界法解决0-1背包问题java
实验内容:运用分支限界法解决0-1背包问题

实验目的:分支限界法按广度优先策略遍历问题的解空间树,在遍历过程中,对已经处理的每一个结点根据限界函数估算目标函数的可能取值,从中选取使目标函数取得极值的结点优先进行广度忧先搜索,从而不断调整搜索方向,尽快找到问题的解。因为限界函数常常是基于向题的目标函数而确定的,所以,分支限界法适用于求解最优化问题。本次实验利用分支限界法解决0-1背包问题。 

算法核心思想

  1. 首先对物品按照单位重量价值排序 
  2. 计算上界值
  3. 计算装入背包的真实价值bestvalue
  4. 使用优先队列存储活节点
  5. 根据bestvalue和重量进行剪枝
  6. 根据优先队列先出队的节点选择最接近最优的结果的情况

详细过程可参考文章:0-1背包问题-分支限界法(优先队列分支限界法)_0-1背包问题-优先队列式分支界限法的基础思想和核心步骤-CSDN博客

解空间树: 

 完整代码:

  1. import java.util.PriorityQueue;
  2. //排列树
  3. class Node implements Comparable<Node> {
  4. int level; // 当前层级
  5. int weight; // 当前重量
  6. int value; // 当前价值
  7. int bound; // 上界
  8. public Node(int level, int weight, int value, int bound) {
  9. this.level = level;
  10. this.weight = weight;
  11. this.value = value;
  12. this.bound = bound;
  13. }
  14. @Override
  15. public int compareTo(Node other) {
  16. // 按照bound的降序排列
  17. return other.bound - this.bound;
  18. }
  19. }
  20. public class Knapsack {
  21. int capacity; // 背包容量
  22. int n; // 物品数量
  23. int[] weights; // 物品重量
  24. int[] values; // 物品价值
  25. int bestvalue;
  26. public Knapsack(int capacity, int n, int[] weights, int[] values) {
  27. this.capacity = capacity;
  28. this.n = n;
  29. this.weights = weights;
  30. this.values = values;
  31. }
  32. public int maxValue() {
  33. // 初始化优先队列
  34. PriorityQueue<Node> queue = new PriorityQueue<>();
  35. queue.add(new Node(0, 0, 0, bound(0, 0,0)));
  36. int maxValue = 0;
  37. this.bestvalue = 0;
  38. while (!queue.isEmpty()) {
  39. Node node = queue.poll(); // 取出队首元素--扩展节点
  40. if (node.level == n) { // 达到叶子节点,更新最大值
  41. maxValue = Math.max(maxValue, node.value);
  42. } else {
  43. // 左子树:选择当前物品
  44. if (node.weight + weights[node.level] <= capacity) {
  45. int leftbound = bound(node.level + 1, node.weight + weights[node.level] ,node.value + values[node.level]);
  46. if(this.bestvalue<node.value + values[node.level]){
  47. this.bestvalue = node.value + values[node.level];
  48. }
  49. if (leftbound<this.bestvalue){
  50. continue;
  51. }
  52. queue.add(new Node(node.level + 1, node.weight + weights[node.level],
  53. node.value + values[node.level],leftbound));
  54. }
  55. // 右子树:不选择当前物品
  56. int rightbound =bound(node.level + 1, node.weight,node.value);
  57. if (rightbound<this.bestvalue){
  58. continue;
  59. }
  60. queue.add(new Node(node.level + 1, node.weight, node.value,rightbound));
  61. }
  62. }
  63. return maxValue;
  64. }
  65. // 计算上界函数
  66. private int bound(int i, int weight,int val) {
  67. int remainingWeight = capacity - weight; // 剩余重量
  68. int remainingValue = 0; // 剩余价值
  69. int j = i;
  70. for (; j < n; j++) {
  71. if (weights[j] > remainingWeight) { // 当前物品装不下,跳出循环
  72. break;
  73. }
  74. remainingWeight -= weights[j]; // 减去当前物品的重量
  75. remainingValue += values[j]; // 加上当前物品的价值
  76. }
  77. if (j<n){ //使用了double类型进行除法运算来保留小数部分的价值
  78. remainingValue = (int) (remainingValue + remainingWeight*(double)(values[j]/weights[j]));
  79. }
  80. return remainingValue+val;
  81. }
  82. public static void main(String[] args) {
  83. //int[] wt = {4,7,5,3};
  84. //int[] val = {40,42,25,12};
  85. //必须按照单位单位价值从大到小
  86. int[] wt = {4,1,1,2,12};
  87. int[] val = {10,2,1,2,4};
  88. int capacity = 15;
  89. int n = wt.length;
  90. Knapsack knapsack = new Knapsack(capacity,n,wt,val);
  91. int res = knapsack.maxValue();
  92. System.out.println(res);
  93. }
  94. }

输出结果:15

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/寸_铁/article/detail/799012
推荐阅读
相关标签
  

闽ICP备14008679号