0

所以这里的想法是我有一个带有一组单词的 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));

任何帮助将在这里非常感激,谢谢。

4

2 回答 2

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
于 2013-11-13T14:02:16.283 回答
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));
于 2013-11-13T14:07:05.903 回答