无序排列/随机化数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了无序排列/随机化数组相关的知识,希望对你有一定的参考价值。
This method shuffles an array. This is the optimum implementation for such an algorithm - O(n).
public static void Shuffle<T>(T[] array) { for (int i = 0; i < 10; i++) { int idx = random.Next(i, 10); //swap elements T tmp = array[i]; array[i] = array[idx]; array[idx] = tmp; } }
以上是关于无序排列/随机化数组的主要内容,如果未能解决你的问题,请参考以下文章
C++ 随机化快速排序 最简单易懂的代码! 基于归并分区思想实现
在一个无序整数数组中,找出连续增长片段最长的一段, 增长步长是1。Example: [3,2,4,5,6,1,9], 最长的是[4,5,6]