如何生成两个数字之间的打乱整数列表?
我想创建一个打乱的整数集,这样:
- 给定相同的种子,每次打乱都会相同
- 当我迭代时,打乱的集合中的每个数字在重复之前将恰好使用一次
- 将适用于大型集合(我想要 0 到 20 亿之间的所有数字)
- 将生成一个范围,例如 100 到 150。
如果您想要 0 到指定数字之间的所有数字,此选项提供了一个很好的解决方案:使用 PRNG 而不是随机生成随机排列的范围
有什么想法吗?
I want to create a shuffled set of integers such that:
- Given the same seed, the shuffle will be the same every time
- As I iterate through, every number in the shuffled set will be used exactly once before repeating itself
- Will work for large sets (I want all numbers between 0 and 2 billion)
- Will generate between a range, for example, 100 to 150.
This option gives a great solution if you want, say, all of the numbers between 0 and a specified number: Generating Shuffled Range Using a PRNG Rather Than Shuffling
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用与链接问题完全相同的算法。只需生成 0 到
upperBound - lowerBound + 1
之间的数字并将lowerBound
添加到结果中即可。例如(使用链接问题中的代码):
如果您希望序列重复(每次以不同的方式洗牌),您可以在迭代器方法主体周围添加一个
while (true)
。You can use the exact same algorithm as the linked question. Just generate numbers between 0 and
upperBound - lowerBound + 1
and addlowerBound
to the result.e.g. (using code from linked question):
If you want the sequence to repeat (shuffled differently each time), you can add a
while (true)
around the iterator method body.