首页 > 其他 > 详细

随机获取部分List<Object>集合

时间:2014-06-25 21:35:01      阅读:391      评论:0      收藏:0      [点我收藏+]

随机返回list对象

  /**
     * 返回随机List
     * @param list 备选
     * @param selected 备选数量
     * @return
     */
    public  List getRandomNum(List list, int selected) {
        List<Object> reList = new ArrayList<Object>();

        Random random = new Random();
        // 先抽取,备选数量的个数
        if (list.size() >= selected) {
            for (int i = 0; i < selected; i++) {
                // 随机数的范围为0-list.size()-1;
                int target = random.nextInt(list.size());
                reList.add(list.get(target));
                list.remove(target);
            }
        } else {
            selected = list.size();
            for (int i = 0; i < selected; i++) {
                // 随机数的范围为0-list.size()-1;
                int target = random.nextInt(list.size());
                reList.add(list.get(target));
                list.remove(target);
            }
        }
      
        return reList;
    }

 

随机获取部分List<Object>集合,布布扣,bubuko.com

随机获取部分List<Object>集合

原文:http://www.cnblogs.com/libaoting/p/random.html

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