ASP.NET (Web) + C#算法 | 生成随机数字序列(随机数字+每个数字取随机不重复的位置和颜色)...

关于今天的一个关于ASP的课后作业,是要求在ASP上实现随机生成数字序列:

具体要求:

  1. 随机位置:每个数字的位置相对随机;
  2. 随机颜色:每个数字的颜色随机且不重复;
  3. 随机数字:从0到9随机取出四个数;



正文

首先放上核心算法,这里我觉得在common.cs中编写比较妥当:

9125154-cdcb7074df00bd19.png

    public static int[] GetRandom(int minValue, int maxValue, int count)
    {
        int[] intList = new int[maxValue];//创建一个以  最大值大小  为长度的数组
        for (int i = 0; i < maxValue; i++)//数组的内容:最小值+(从 0 到 最大值减一 ),及intList为一个特殊规律的不重复的递增数组
        {
            intList[i] = i + minValue;
        }
        int[] intRet = new int[count];//创建以  要取的数的个数  为长度的数组
        int n = maxValue;
        Random rand = new Random();
        for (int i = 0; i < count; i++)
        {
            int index = rand.Next(0, n);//随机取一个0到n之间的数
            intRet[i] = intList[index];
            intList[index] = intList[--n];
        }

        return intRet;
    }

//n是一个递减变化的数
//intList的一个运行模拟序列:
//0 1 2 3 4 n = listlength = 5,取到1
//0 4 2 3 | 4 n = listlength = 4,取到4
//0 3 2 | 3 4 n = listlength = 3
//...
//不断用最后面的值来覆盖选中到的值,再把最后面的值去掉(通过n--实现,抽象意义上“截短”提供数字的intList),由此实现不重复序列

详细解析见以上的代码截图。



接着是.aspx.cs文件(下图为部分剪影,后方附上完整代码):

9125154-44628cc0c084ec33.png

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Data;
using System.Text;
using System.IO;
using System.Drawing;

public partial class Default2 : System.Web.UI.Page
{
    protected void Page_Load(object sender, EventArgs e)
    {
        Random rd = new Random();
        int num = rd.Next(1000,10000);
        string textString = num.ToString();

        int widthx = 800;
        int heightx = 600;
    
        Bitmap btmap = new Bitmap(widthx, heightx);
        Graphics gg = Graphics.FromImage(btmap);
        SolidBrush sb = new SolidBrush(Color.White);
        gg.FillRectangle(sb, new Rectangle(0, 0, widthx, heightx));
        
        Font ft = new Font("楷体",18,FontStyle.Strikeout);
        SolidBrush sbft = new SolidBrush(Color.Black);
        Color[] cr = {Color.Red,Color.Black,Color.Blue,Color.Yellow,Color.Gray,Color.Orange};
        //gg.DrawString(textString.Substring(0,textString.Length/2), ft , sbft, new PointF(0,0));
        //gg.DrawString(textString.Substring(5,5), ft, sbft1, new PointF(0, 300));

        int[] rdlist = common.GetRandom(0,cr.Length,textString.Length);//产生一个随机的不重复的int列表

        int leftmargin = 0;
        for (int i=0; i < textString.Length; i++)
        {
            //使用时,顺序对这个int列表取值即可
            gg.DrawString(textString.Substring(i,1),ft,new SolidBrush(cr[rdlist[i]]),leftmargin,leftmargin+100+rd.Next(-15,15));
            leftmargin = leftmargin + 18;
        }
        MemoryStream ms = new MemoryStream();
        btmap.Save(ms, System.Drawing.Imaging.ImageFormat.Gif);
        Response.ClearContent();
        Response.ContentType = "image/gif";
        Response.BinaryWrite(ms.ToArray());
        
    }
}

至此便实现了要求了,下面放上效果图:

9125154-453a1d8879e622f9.png

9125154-8bb0d56ac25b9e60.png

9125154-c49b8529e74b853a.png







算法参考文章

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

打赏作者

凌川江雪

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

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

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

打赏作者

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

抵扣说明:

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

余额充值