标签:个数 log i++ public 范围 指定 rand and random
public static void setRandom(int min, int max, int n, HashSet<Integer> set) { Random random = new Random(); for (int i = 0; i < n; i++) { int ranInt = random.nextInt(max - min + 1); if(!set.add(ranInt)){ i--; } } }
标签:个数 log i++ public 范围 指定 rand and random
原文地址:http://www.cnblogs.com/qj4d/p/6640472.html