如何在java中从m个数字的列表中生成n个随机数?

发布于 2024-10-19 06:45:25 字数 56 浏览 0 评论 0原文

例如,我有一个包含 20 个数字的列表,我尝试随机生成其中 6 个数字而不重复它们。有什么想法吗?

For example I have a list of 20 numbers and i try to random generate six of them without repeating them. Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

烟沫凡尘 2024-10-26 06:45:25

如果您有一个 java.util.List,您可以简单地 随机播放选择前 6 个

If you have a java.util.List you could simple shuffle it and pick the first six.

浮世清欢 2024-10-26 06:45:25

一个简单的方法是随机打乱列表,然后取出前六个元素:

List<Number> population = ...your list of 20 numbers...
Collections.shuffle(population);
List<Number> sample = population.subList(0, 6);

An easy way is to randomly shuffle the list and then take the first six elements:

List<Number> population = ...your list of 20 numbers...
Collections.shuffle(population);
List<Number> sample = population.subList(0, 6);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文