对数组随机排序

作者:追风剑情 发布于:2016-1-13 20:15 分类:Algorithms

  1. public static void RandSortArray(List<int> arr)
  2. {
  3. int size = arr.Count;
  4. int seed = 10000;
  5. //对给定数组随机排序, 每组排列的概率都为 1/size的阶乘
  6. System.Random rand = new System.Random();
  7. for (int i = 0; i < size; i++)
  8. {
  9. int randIndex = (int)(rand.Next(seed) % (size - i)) + i;//产生一个[i, size-1]的随机数
  10. int j = arr[i];
  11. arr[i] = arr[randIndex];
  12. arr[randIndex] = j;
  13. }
  14. }

标签: Algorithms

Powered by emlog  蜀ICP备18021003号-1   sitemap

川公网安备 51019002001593号