zoukankan      html  css  js  c++  java
  • 生成不重复的随机数数组,算法优化

            private void Form1_Load(object sender, EventArgs e)
            {
                string result = "";
                System.Diagnostics.Stopwatch watch = new System.Diagnostics.Stopwatch();

                watch.Start();
                List<int> list = new List<int>();
                Random random = new Random();
                while (list.Count < 100)
                {
                    int t = random.Next(0100);
                    if (!list.Contains(t))
                    {
                        list.Add(t);
                    }
                }
                watch.Stop();

                result += "A:" + watch.ElapsedTicks.ToString();

                watch.Restart();

                int[] arr = new int[100];
                int[] buf = new int[100];

                for (int i = 0; i < 100; i++)
                {
                    buf[i] = i;
                }

                Random ran = new Random();
                int bufLength = buf.Length;
                for (int i = 0; i < 100; i++)
                {
                    int t = ran.Next(0, bufLength);
                    arr[i] = buf[t];
                    buf[t] = buf[bufLength - 1];
                    bufLength--;
                }
                watch.Stop();

                result += "  B:" + watch.ElapsedTicks.ToString();

                MessageBox.Show(result);
                this.Close();
            }
     
     
     
     
     
  • 相关阅读:
    vue 使用echarts 柱状图使用图片显示
    Devexpress分组小计
    小写转大写
    预览打印
    LINQ
    结束任务管理器进程
    游标
    查看死锁
    sql 分页
    压缩解压缩传输的数据
  • 原文地址:https://www.cnblogs.com/bloodofhero/p/2675583.html
Copyright © 2011-2022 走看看