码迷,mamicode.com
首页 > 编程语言 > 详细

将一个数组随机打乱

时间:2015-07-03 01:38:20      阅读:144      评论:0      收藏:0      [点我收藏+]

标签:

 public int []  shuffle(int [] arr) {
      int [] arr2 =new int[arr.length];
      int count = arr.length;
      int cbRandCount = 0;// 索引
      int cbPosition = 0;// 位置
      int k =0;
      do {
       Random rand = new Random();
       int r = count - cbRandCount;
       cbPosition = rand.nextInt(r); 
       arr2[k++] = arr[cbPosition];
       cbRandCount++;
       arr[cbPosition] = arr[r - 1];// 将最后一位数值赋值给已经被使用的cbPosition
      } while (cbRandCount < count);
      return arr2;
     }

 

将一个数组随机打乱

标签:

原文地址:http://www.cnblogs.com/xuhuaiqu/p/4617562.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!