java shuffle(打亂)實現中遇到的問題

  public static void shuffle(ArrayList<Integer> list) { Integer[] a = new Integer[list.size()]; list.toArray(a); Integer b; for(int i = 0; i < list.size(); i++) { b = a[i]; a[i] = a
相關文章
相關標籤/搜索