随机排列数组元素

方法逻辑为:

把数组放入一个List里面,然后给出一个随机数,求余后,从list中取出该元素。放入数组中的第一个位置。

一直取,直到list中元素都被取完位置。

private void randomarray(ref T[] array) 
       { 
           List l = array.ToList(); 
           for (int i = 0; i < array.Length; i++) 
           { 
               Random r = new Random(); 
               int j = r.Next(0, l.Count - 1); 
               j = j % l.Count; 
               array[i] = l.ElementAt(j); 
               l.RemoveAt(j); 
           } 
       }

你可能感兴趣的:(随机排列数组元素)