gpt4 book ai didi

Java - 随机数生成器中的缺陷

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:02:26 24 4
gpt4 key购买 nike

我正在创建一个程序,该程序应随机指定我将在 Java 期中考试中解决的问题。我创建了一个运行 100,000 次的程序,并将每个问题作为 HashMap 中的键输入,而它的值是从 100,000 中生成的计数数。我创建了以下简单程序:

public class randomChoice {
public static Map<Integer, Integer> dictionary = new HashMap<Integer, Integer>();

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<Integer, Integer> maxEntry = null;

for (Map.Entry<Integer, Integer> entry : dictionary.entrySet()) {
if (maxEntry == null || entry.getValue().compareTo(maxEntry.getValue()) > 0) {
maxEntry = entry;
}
}
System.out.println("\nThe question I will be using for the midterm is " + maxEntry.getKey() + " with a total count of " + maxEntry.getValue());
int total = 0;
for (Map.Entry<Integer, Integer> entry : dictionary.entrySet()) {
total = entry.getValue() + total;
}
System.out.println("\nTotal: " + total);
}
}

当我尝试将 HashMap 的所有值相加时(这是 100,000 个问题中每个问题的生成频率),我的问题就出现了。这是生成的输出,打印 HashMap,我将要做的随机选择的问题具有最高的值(value),最后是所有 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 个生成的随机数?

最佳答案

您距离 100,000 正好差 33,因为当您第一次遇到 33 个 map 条目中的每一个时,您放置的是 0,而不是 1 .这是一个差一错误。

改变

dictionary.put(randomNum, 0);

dictionary.put(randomNum, 1);

关于Java - 随机数生成器中的缺陷,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47799450/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com