JAVA random 缺陷_Java-随机数生成器中的缺陷

我正在创建一个程序,该程序应随机指定我的Java中期将要解决的问题.

我创建了一个运行100,000次的程序,并将每个问题作为键输入到哈希图中,

而它的值是100,000中产生的计数数.

我创建了以下简单程序:

public class randomChoice {

public static Map dictionary = new HashMap();

public static void randInt() {

Random rand = new Random();

int randomNum = rand.nextInt((33 - 1) + 1) + 1;

if (dictionary.containsKey(randomNum)) {

dictionary.put(randomNum, dictionary.get(randomNum) + 1);

} else {

dictionary.put(randomNum, 0);

}

}

public static void main(String[] args) {

int i = 0;

while (i < 100000) {

randInt();

i++;

}

System.out.println(dictionary);

Map.Entry maxEntry = null;

for (Map.Entry entry : dictionary.entrySet()) {

if (maxEntry == null || entry.getValue().compareTo(maxEntry.getValue()) > 0) {

maxEntry = entry;

}

}

System.out.println("

The question I will be using for the midterm is " + maxEntry.getKey() + " with a total count of " + maxEntry.getValue());

int total = 0;

for (Map.Entry entry : dictionary.entrySet()) {

total = entry.getValue() + total;

}

System.out.println("

Total: " + total);

}

}

当我尝试将我的HashMap的所有值加起来(这是为每一个问题生成的频率,即100,000个问题)时,我的问题就出现了.

这是生成的输出,

打印HashMap,

我将随机选择的问题的价值最高,

最后是所有HashMap值的总和:

> run randomChoice

{1=3038, 2=3025, 3=3009, 4=2945, 5=2996, 6=3049, 7=3004, 8=3078, 9=3011, 10=3012, 11=2995, 12=3041, 13=3116, 14=3015, 15=3029, 17=3058, 16=3141, 19=3045, 18=2976, 21=2988, 20=3065, 23=2943, 22=3106, 25=3025, 24=3093, 27=3092, 26=3058, 29=3018, 28=2981, 31=3035, 30=2970, 32=3007, 33=3003}

The question I will be using for the midterm is 16 with a total count of 3141

Total: 99967

>

我的问题是,为什么总数会达到99967,而不是100,000?

大概33短,似乎有点可疑,我有33个问题可供选择.

我在这里做错了什么?

我的缺陷在哪里可以帮助我准确地创建100,000个生成的随机数?

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值