C#实现随机洗牌的方法

前端技术 2023/09/06 C#

本文实例讲述了C#实现随机洗牌的方法。分享给大家供大家参考。具体实现方法如下:

复制代码 代码如下:
#region 随机洗牌 
int[] ints = { 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20 }; 
List<int> list=ints.ToList(); 
int[] outs = new int[20]; 
Random rand = new Random(); 
for (int i = 0; i < 20; i++) 

    int x = rand.Next(list.Count); 
    outs[i] = list[x]; 
    list.RemoveAt(x); 

Response.Write(\"<hr/>\"); 
foreach (int i in outs) 

    Response.Write(i.ToString() + \" \"); 

#endregion

希望本文所述对大家的C#程序设计有所帮助。

本文地址:https://www.stayed.cn/item/16167

转载请注明出处。

本站部分内容来源于网络,如侵犯到您的权益,请 联系我

我的博客

人生若只如初见,何事秋风悲画扇。