如何随机排列数组列表的特定范围?
2022-09-03 17:54:02
在Java中,我知道要洗牌ArrayList,方法Collesions.shuffle()存在,但是这会洗牌整个列表。
我如何编写一个方法(或者,有人可以编写它并向我展示它吗?),如下所示:
private ArrayList<AnObject> list;
/**
* Shuffles the concents of the array list in the range [start, end], and
* does not do anything to the other indicies of the list.
*/
public void shuffleArrayListInTheRange(int start, int end)