面试题向一个长度为100的int数组,插入1-100的随机数,不能重复

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了面试题向一个长度为100的int数组,插入1-100的随机数,不能重复相关的知识,希望对你有一定的参考价值。

 1  public int[] GetNoRepeatArrayy(int arrLength)
 2         {
 3             int[] array = new int[arrLength];
 4             IList<int> list = new List<int>();
 5             //准备不重复的数据
 6             for (int i = 0; i < array.Length; i++)
 7             {
 8                 list.Add(i);
 9             }
10             //将不重复的数据随机插入到数组中
11             for (int j = (list.Count - 1); j > -1; j--)
12             {
13                 //获得数据的随机索引
14                 int index = new Random(Guid.NewGuid().GetHashCode()).Next(0, list.Count);
15                 //给数组赋值
16                 array[j] = list[index];
17                 //删除废弃数据,避免重复数据插入到数组中
18                 list.RemoveAt(index);
19             }
20             return array;
21         } 

 

以上是关于面试题向一个长度为100的int数组,插入1-100的随机数,不能重复的主要内容,如果未能解决你的问题,请参考以下文章

面试题 一个长度为100的数组,随机插入1-100,不重复,写出大致思路即可;

在数组中随机插入数字且不重复

向数组中插入数(顺序表)

不使用循环,如何创建一个长度为100的数组

JAVA数组

leetcode top100