在C#中,如何从一系列值中获取一个随机数 – 如1..100,但该数字不应该在某些特定的值列表中,如5,7,17,23? 由于没有人发布任何示例代码: private int GiveMeANumber(){ var exclude = new HashSet
private int GiveMeANumber() { var exclude = new HashSet<int>() { 5, 7, 17, 23 }; var range = Enumerable.Range(1, 100).Where(i => !exclude.Contains(i)); var rand = new System.Random(); int index = rand.Next(0, 100 - exclude.Count); return range.ElementAt(index); }
这是思考:
>构建要排除的数字哈希值>创建一个0-100的所有数字的集合,这些数字不在您的数字列表中,而是用一些LINQ排除.>创建一个随机对象.>使用Random对象为您提供0到数字范围(包括)范围内的元素数之间的数字.>返回该索引处的数字.