首页 > 其他 > 详细

生成count个[0-n)不重复的随机数

时间:2019-06-11 11:08:21      阅读:146      评论:0      收藏:0      [点我收藏+]

代码来自:https://www.cnblogs.com/ningvsban/p/3590722.html,做了一点小小修改

public static ArrayList getDiffNo(int count, int n){
    // 生成count个[0-n) 不重复的随机数,左开右闭
    // list 用来保存这些随机数
    ArrayList list = new ArrayList();
    Random rand = new Random();
    boolean[] bool = new boolean[n];
    int num = 0;
    for (int i = 0; i < count; i++) {
        do {
            // 如果产生的数相同继续循环
            num = rand.nextInt(n);
        } while (bool[num]);
        bool[num] = true;
        list.add(num);
    }
    return list;
}

测试:

for (int i = 0; i < 10; i++) {
            System.out.println(getDiffNo(5, 20));;
        }

结果:

[4, 0, 8, 9, 13]
[6, 13, 8, 10, 14]
[16, 6, 17, 12, 19]
[3, 10, 13, 4, 14]
[10, 0, 1, 5, 19]
[1, 14, 5, 11, 6]
[1, 3, 5, 9, 18]
[0, 5, 10, 4, 7]
[4, 5, 19, 10, 16]
[6, 13, 11, 3, 18]

 

生成count个[0-n)不重复的随机数

原文:https://www.cnblogs.com/huigelaile/p/11002285.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!