C#洗牌算法

protected void Button1_Click(object sender, EventArgs e)
    {
        string[] qian = new string[52]{"Ahe", "2he", "3he", "4he", "5he", "6he", "7he", "8he", "9he", "10he", "Jhe", "Qhe", "Khe",
            "Ah","2h","3h","4h","5h","6h","7h","8h","9h","10h","Jh","Qh","Kh","Am", "2m", "3m", "4m", "5m", "6m", "7m", "8m", "9m", "10m", "Jm", "Qm", "Km",
            "Af", "2f", "3f", "4f", "5f", "6f", "7f", "8f", "9f", "10f", "Jf", "Qf", "Kf"};
        Response.Write("洗牌前"+"<br>");
        foreach (string s1 in qian)
        {
            Response.Write(s1 + " ");
        }
        System.Random r1 = new Random();
       // System.Random r2 = new Random();
        for (int j = 0; j < 5200; j++)
        {
            int a = Convert.ToInt32(r1.Next(0, 51));
            int b = Convert.ToInt32(r1.Next(0, 51));
            string t = string.Empty;
                t = qian[a];
                qian[a] = qian[b];
                qian[b] = t;
        }
        Response.Write("<br>"+"洗牌后:" + "<br>");
        foreach (string s in qian)
        {
          
            Response.Write(s + " ");
        }
    }
 

评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

邹琼俊

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值