所以这里的想法是我有一个带有一组单词的ArrayList,我想对列表进行排序,使它只包含具有偶数编号的条目的条目,然后随机选择一个条目。我给了这个bash,我设法让它只显示奇怪的条目:
int i = 0;
for (Iterator<Phrase> it = phrases.iterator(); it.hasNext(); i++)
{
Phrase current = it.next();
if (i % 2 == 0)
{
System.out.println(current);
}
}
这打印出ArrayList上的每个奇数元素,这很好,但我不知道如何从奇数编号中随机选择一个。这是我尝试放入if语句但它没有做我想要的,它会随机打印元素,但它还包括奇数元素,当我只想要偶数时
Random r = new Random();
int x = r.nextInt(phrases.size());
System.out.println(phrases.get(x));
非常感谢任何帮助,谢谢。
答案 0 :(得分:1)
但我不知道如何从奇数编号中随机选择一个 的。
如何确保x
为大小的一半,并将其与2
相乘以获得偶数索引。请尝试以下方法:
Random r = new Random();
int x = r.nextInt(phrases.size()/2) + (list.size() & 1) - 1;
// size is divided by 2
// so that x is randomly 0 to (size/2 -1) inclusive
System.out.println(phrases.get(x * 2)); // ensuring the accessing index are even
答案 1 :(得分:0)
你可以循环直到你得到一个,但从技术上讲,这可能永远不会发生。因此,只需确保x是2的倍数。
Random r = new Random();
int x = r.nextInt(phrases.size()); // Might be even or odd
x = x % 2 != 0 ? x + 1 : x; // if x is not divisible by 2, x + 1, else x
// x is is now a multiple of two
if(x >= phrases.size()){ // make sure x is still within the
// index boundaries.
x = x-2;
if(x < 0){
x = 0;
}
}
System.out.println(phrases.get(x));