我是一名学生,正在尝试编写一个测试概率的程序。它被称为 TestLuck,它应该生成用户确定数量的 IntArrayLogs(ADT),其中填充了随机值。该程序应该计算在与第一个值匹配之前生成了多少个值。
实际问题:“创建应用程序TestLuck;让用户输入随机整数范围的上限(书上说10,000,但您也应该使用365进行测试)以及运行测试的次数。计算并输出平均的。”
这是我想出的,但由于某种原因我没有得到正确的结果,我测试了我使用的方法,它们似乎工作正常,我认为这与我如何跟踪计数器有关.
for(int k=0; k<numTests; k++) {
for(int i=0; i<upperLimit; i++) {
arrLog.insert(n);
n = rand.nextInt(upperLimit);
if(arrLog.contains(arrLog.getElement(0))) {
totalCount += i;
break;
}
if(i == upperLimit-1)
totalCount +=i;
}
System.out.println("Total Count: " + totalCount);
arrLog.clear();
}
testAverage = totalCount/numTests;
System.out.println("Average tests before match: " + testAverage);
包含方法:
// Returns true if element is in this IntLog,
// otherwise returns false.
public boolean contains(int element) {
int location = 0;
int counter = 0;
while (location <= lastIndex) {
if (element == log[location]) { // if they match
counter++;
location++;
if(counter == 2)
return true;
} else
location++;
}
return false;
}