您现在的位置是:首页 > 文章详情

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

日期:2018-11-29点击:358

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

具体要求:

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



正文


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

img_dcb8a7ef57b337514698ec0a54594060.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文件(下图为部分剪影,后方附上完整代码):

img_089017ae5481eb521f9947a9df5a3551.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()); } } 

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

img_92e3da1e30e716cfe0562d24e77ccd08.png

img_80cf3189bc1f2c4509f0c489bb576ffe.png

img_d4009cd2d3f9cc3ff952c1af074c4a85.png







算法参考文章

原文链接:https://yq.aliyun.com/articles/686540
关注公众号

低调大师中文资讯倾力打造互联网数据资讯、行业资源、电子商务、移动互联网、网络营销平台。

持续更新报道IT业界、互联网、市场资讯、驱动更新,是最及时权威的产业资讯及硬件资讯报道平台。

转载内容版权归作者及来源网站所有,本站原创内容转载请注明来源。

文章评论

共有0条评论来说两句吧...

文章二维码

扫描即可查看该文章

点击排行

推荐阅读

最新文章