我有一个包含N个元素的列表,我想随机化它的顺序。
最好用最少的计算,并且能够耗尽内存(复制总数)。
到目前为止,我已经提出:
对我来说,最便宜的是第三种选择,但我不确定结果的随机性。有什么建议吗?
答案 0 :(得分:10)
Collections.shuffle(list);
你在寻找什么。
答案 1 :(得分:4)
调整列表的最佳方法是使用标准库方法Collections.shuffle
。
List lst = getListFromSomewhere();
Collections.shuffle(lst);
如果您想自己动手,请阅读Fisher-Yates shuffle algorithm。
答案 2 :(得分:1)
其他人已经提到过shuffle,但是如果你使用gwt,则不支持shuffle,你可能需要对其进行编码。这是一种方法:
public static void shuffleList(final List<String> list) {
int length = list.size();
Random random = new Random();
for (int i = 0; i < length; i++) {
// Swap index
int swap = i + random.nextInt(length - i);
// Store temporarily
String temp = list.get(i);
// Set the values
list.set(i, list.get(swap));
list.set(swap, temp);
}
}
要使用,只需执行 -
shuffleList(listOfStringsToShuffle);