码迷,mamicode.com
首页 > 其他好文 > 详细

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

时间:2014-06-25 21:34:40      阅读:341      评论:0      收藏:0      [点我收藏+]

标签:style   class   blog   code   tar   ext   

随机返回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>集合

标签:style   class   blog   code   tar   ext   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!