JAVA随机生成数组(不重复)

JAVA随机生成数组(不重复),第1张

JAVA随机生成数组(不重复

JAVA随机生成数组(不重复)

将一组数组顺序打乱,基于java.Vector容器。

   
    public static Vector getRandomRes(Vector source,int size){
        Vector result = new Vector();
        Random random = new Random();
        for (int i = 0; i < size - 1; i++) {
            int randomIndex = random.nextInt(source.size() - i);
            int randomRes = source.elementAt(randomIndex);
            result.add(randomRes);
            int temp = source.elementAt(randomIndex);
            source.set(randomIndex, source.elementAt(source.size() - 1 - i));
            source.set(source.size() - 1 - i, temp);
        }
        result.add(source.elementAt(0));
        return result;
    }

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/4695725.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-11-07
下一篇 2022-11-07

发表评论

登录后才能评论

评论列表(0条)

保存