我有List
个包含x项的项目。
我想在条件中随机分发这些项目:
- 每个列表的最大大小为y项(y = 4)
- 每个项目最多必须使用z次(z = 5)
如果x不能被y和z整除,则可以使列表包含少于y个项目。
我正在寻找这种方法的Java(从1.6到1.8)实现。谢谢!
修改
这是我到目前为止所尝试的内容:
List<Item> myItems; // Initialized in an other part
int y, z; // Initialized in an other part
int x = myItems.size();
List<List<Item>> myList = new ArrayList<List<Item>>();
int a = (int) Math.ceil((double)x/y);
Random random = new Random(new Random().nextInt());
for (int j = 0; j < a; j++) {
myList.add(j, new ArrayList<Item>());
}
for (int i = 0; i < x; i++) {
int r = random.nextInt(a);
while (myList.get(r).size() >= y) {
r = random.nextInt(a);
}
myList.get(r).add(myItems.get(i));
}
// Here myList is populated
答案 0 :(得分:1)
以下代码应该有效。我在这里假设列表中的项目总数不应该改变。
public List<List<Item>> distribute(List<Item> list, int y, int z) {
int x = list.size();
int nLists = (int) Math.ceil((double)x/y);
// Create result lists
List<List<Item>> result = new ArrayList<>();
for (int j = 0; j < nLists; j++)
result.add(new ArrayList<Item>());
List<List<Item>> outputLists = new ArrayList<>(result);
// Create item count store
Map<Item, Integer> itemCounts = new HashMap<>();
for (Item item : list)
itemCounts.put(item, 0);
// Populate results
Random random = new Random();
for (int i = 0; i < x; i++) {
// Add a random item (from the remaining eligible items)
// to a random list (from the remaining eligible lists)
Item item = list.get(random.nextInt(list.size()));
List<Item> outputList = outputLists.get(random.nextInt(outputLists.size()));
outputList.add(item);
// Manage eligible output lists
if (outputList.size() >= y)
outputLists.remove(outputList);
// Manage eligible items
int itemCount = itemCounts.get(item).intValue() + 1;
if (itemCount >= z)
list.remove(item);
else
itemCounts.put(item, itemCount);
}
return result;
}
注意:上面的代码会改变原始列表。如果不需要,您应该在开始时创建列表的副本。
使用以下输入:
list = [0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29]
y = 4
z = 3
这给出了输出列表,例如:
[1,10,17,2]
[2,24,6,26]
[16,23,21]
[8,0,3,13]
[12,11,6,0]
[2,17,14,7]
[0,27,7,12]
[7,19,3]
在此期间,商品0
,2
和7
达到z
限制,并且未再次使用。