码迷,mamicode.com
首页 > 编程语言 > 详细

java打乱ArrayList生成一个随机ArrayList列表

时间:2014-09-20 14:06:57      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:arraylist   java   random   android   

自己写了一个,有时候会有需要。

public static <V> boolean isEmpty(ArrayList<V> sourceList) {
        return (sourceList == null || sourceList.size() == 0);
    }

/**
     * 打乱ArrayList
     * 
     * */
    public static <V> ArrayList<V> randomList(ArrayList<V> sourceList){
    	if (isEmpty(sourceList)) {
            return sourceList;
        }
    	
    	ArrayList<V> randomList = new ArrayList<V>( sourceList.size( ) );
    	do{
    		int randomIndex = Math.abs( new Random( ).nextInt( sourceList.size() ) );
        	randomList.add( sourceList.remove( randomIndex ) );
    	}while( sourceList.size( ) > 0 );
    	
    	return randomList;
    }


java打乱ArrayList生成一个随机ArrayList列表

标签:arraylist   java   random   android   

原文地址:http://blog.csdn.net/ekeuy/article/details/39430101

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