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

随机打乱数组元素

时间:2016-11-30 02:26:38      阅读:154      评论:0      收藏:0      [点我收藏+]

标签:nts   str   int   and   nbsp   next   element   array   blog   

把数组内的元素随机打乱,重新进行排列

 

 

 C#版:

 1 public  static void Shuffle<T>(T[] array)
 2     {
 3         Random random = new Random();
 4   
 5         for (int i = 0; i < 10; i++)
 6         {
 7             int idx = random.Next(i, 10);
 8   
 9             //swap elements
10             T tmp = array[i];
11             array[i] = array[idx];
12             array[idx] = tmp;
13         } 
14     }

 

随机打乱数组元素

标签:nts   str   int   and   nbsp   next   element   array   blog   

原文地址:http://www.cnblogs.com/xinxin521/p/6115693.html

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