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

标签 java random hashmap

我正在创建一个程序,该程序应随机指定我将在 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/

相关文章:

java - 无法使用maven部署将java应用程序重新部署到tomcat7

c# - path.getrandomfilename 每次都会生成一个唯一的文件名吗?

java - 骰子模拟 - 循环中的 onClickListener

javascript - 我不知道如何重置背景颜色值

algorithm - 平行四边形内的随机点

c++ - 为什么我机器上的 hash_map 和 unordered_map 非常慢?

java - 返回 HashMap 的值

Java HashMap 错误

java - 如何将 gradle 模块集成到 Maven 项目中?

java - Scala、SparkLauncher无法运行程序 "/etc/spark/conf.cloudera.CD-SPARK_ON_YARN-brkvSOzr/yarn-conf/topology.py"