如何打亂一個順序的數組,其實集合的幫助類Collection就有現成的方法可用,而且效率還蠻高的,總比自定義隨機數等等方法要好很多。其實亂序就這麼簡單,步驟如下:
1. 將一個順序排列的數組添加到集合中
2. 可以用集合幫助類Collections的shuffle()方法
3. 用hasNext()、next()方法遍歷輸入集合
- /**
- * 隨即打亂一個順序de數組
- */
- import java.util.ArrayList;
- import java.util.Collections;
- import java.util.Iterator;
- import java.util.List;
-
-
- public class Shuffle {
-
- public static void main(String[] args) {
- shuffle();
- }
-
- public static void shuffle(){
- int[] x = {1,2,3,4,5,6,7,8,9};
- List list = new ArrayList();
- for(int i = 0;i < x.length;i++){
- System.out.print(x[i]+", ");
- list.add(x[i]);
- }
- System.out.println();
-
- Collections.shuffle(list);
-
- Iterator ite = list.iterator();
- while(ite.hasNext()){
- System.out.print(ite.next().toString()+", ");
- }
- }
- }