我正在尝试进行First-Fit垃圾箱包装。这是我写的代码,每行作为注释解释:
private void runFirstFit(ActionEvent event) {
// The counters
int i;
int j = 0;
// The boolean
packingComplete = false;
// Declare an arrayList from the numbers the user has entered
ArrayList<Integer> numbers = new ArrayList(6);
// Add numbers into the array from input (using a loop)
for (i = 0; i < 6; i++) {
numbers.add(parseInt(getNumber(i)));
}
// - Main packing algorithm starts here -
// Iterate through arraylist and get next number
Iterator<Integer> iterator = numbers.iterator();
// While there are still numbers left, try and add to bins
while (iterator.hasNext()) {
// Number(s) still exist in the list
// Check if number can fit inside bin
System.out.println("Number currently in queue: " + iterator.next());
if (canNumberFitInsideBin(j, iterator.next())) {
// Put number inside bin
bin[j] += String.valueOf(iterator.next()) + ", ";
System.out.println("Number added to bin " + j);
} else {
// Bin is full, move to the next bin (increment counter)
j++;
// Put number inside that bin
bin[j] += String.valueOf(iterator.next()) + ", ";
System.out.println("Counter incremented");
}
}
// Update all labels
updateAllBinLabels();
}
基本上,getNumber(i)
部分是一个返回数字的函数。我正在使用循环将实际数字(其中6个,更具体)添加到名为“numbers”的ArrayList中。
我已尝试在每个阶段打印出数字并查看它正在处理的数字 - 但似乎只是随意地随机跳过一些数字。例如,如果ArrayList输入为1,2,3,4,5,6
,则它添加到bin[0]
的第一个数字为3
(应为1
),然后它还会将6
添加到bin[0]
{{1}}有点忽略所有其他数字并转到下一个bin数组。
有人能发现我做错了吗?
由于
答案 0 :(得分:2)
最明显的问题是iterator.next()只应在每次进入循环时调用一次。每次调用它时,您都会在列表中前进。您需要调用一次并将其保存在循环顶部的临时变量中。
另外你应该检查一下这个号码是否适合其他bin中的bin,除非你知道这些值都不大于你的bin大小。