两个不同的list随机组合到一个List中。

时间:2023-03-08 22:12:52

今天组长给了一个绑定任务,业务需要把一男一女随机的老师绑定到考场。

测试例子入下:

 package com.test;

 import java.util.ArrayList;
import java.util.List; public class Test { /**
* @param args
*/
public static void main(String[] args) {
// TODO Auto-generated method stub
List<String> ones = new ArrayList<String>();
ones.add("1男");
ones.add("2男");
ones.add("3男");
ones.add("4男");
ones.add("5男");
ones.add("6男");
List<String> twos = new ArrayList<String>();
twos.add("7女");
twos.add("8女");
twos.add("9女");
twos.add("10女");
twos.add("11女");
twos.add("12女");
List<String> strs = new ArrayList<String>();
int a =ones.size();
for (int i = 0; i < a; i++) {
int index1 = (int) (Math.random() * ones.size());
int index2 = (int) (Math.random() * twos.size());
strs.add("["+ones.get(index1)+","+twos.get(index2)+"]");
ones.remove(index1);
twos.remove(index2);
}
System.out.println(strs);
} }

其实原理就是按照不规则取出,放入到一个新list中,取出的在remove掉。