C#实现随机洗牌的方法
程序员文章站
2023-12-13 20:32:46
本文实例讲述了c#实现随机洗牌的方法。分享给大家供大家参考。具体实现方法如下:
复制代码 代码如下:#region 随机洗牌
int[] ints = {...
本文实例讲述了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
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#程序设计有所帮助。