生成n个不重复的随机数 不包括最大值
摘要:
/**** * 生成n个不重复的随机数 * @param min * @param max * @param n * @return */ public static void randomSet(int min, int max, int n, HashSet<Integer> set) { if 阅读全文
posted @ 2022-12-19 16:32 让代码飞 阅读(38) 评论(0) 推荐(0) 编辑