gpt4 book ai didi

C 中的计算模式 - 数学有点错误

转载 作者:行者123 更新时间:2023-12-04 04:55:12 25 4
gpt4 key购买 nike

C 编程的第 3 天,请耐心等待。我正在做一个初学者练习,其中我生成随机数并计算平均值、标准差、中位数和众数。

模式中的问题。我正在继续从事其他一些项目,但与此同时,我发布了这篇文章,看看是否有人能发现我的错误。用户在开始时输入随机数的范围和数量。如果最小值为 1,则模式返回正确的值,但如果最小值较大则不返回正确值。

如果对如何允许多个模式有任何见解也会很有趣 - 我有一个大概的想法如何做到这一点(一个额外的 for 循环和一个额外的数组?但不太确定我将如何处理打印新数组中的相关值)。

这是(仅相关部分)我的代码:

#include <stdio.h>
#include <stdlib.h>
#include <time.h>
#include <math.h>

int main() {

// setting parameters
int SIZE, MIN, MAX;
printf("How low should the smallest random number be?\n");
scanf("%d",&MIN);
printf("How high should the largest random number be?\n");
scanf("%d",&MAX);
printf("How many random numbers do you want?\n");
scanf("%d",&SIZE);

int rnx[SIZE];
int biggles, *tally, count=0;
int mode;
int i,j;
float mean, sumdev, median;

tally = (int*) calloc (MAX-MIN,sizeof(int)); // creates an array for the tally in the mode function and initializes it to zero for the incrementing.

srand(time(NULL)); // random seed outside the loop

// generate random numbers into an array

for(i=0;i<SIZE;i++) {
rnx[i]=round(((double)rand()/(RAND_MAX)*(MAX-MIN)+MIN));
}

BubbleSort(rnx,SIZE); // left out for brevity the actual function I wrote for this but it works

// calculates the mode

for(i=MIN;i<MAX;i++) {
for(j=0;j<SIZE;j++) {
if(rnx[j]==i) {
tally[i-MIN]++; // in the second array we register how many times each number occurs in the random sequence, checking from the minimum to maximum.
}
}
}
mode = biggles;
// for (j=0;j<10;j++) {
for(i=MIN;i<MAX;i++) {
if(tally[i-MIN]>count) {
count=tally[i-MIN];
if(count>1) {
mode=i-MIN+1; }
}
}

if (mode!=biggles) {
printf("The mode of the random numbers is %d\n",mode); }
else { printf("The random numbers have no mode.\n"); } // in case there is no mode. but what if there is more than one?
free(tally);
return 0;

}

最佳答案

当你这样做时:
tally = (int*) calloc (MAX-MIN,sizeof(int));
假设 MAX 是 4,MIN 是 1。这意味着你可以得到 1、2、3 和 4 作为随机数。但是 MAX - MIN = 3,因此您只为 3 分配空间。将其更改为 MAX-MIN+1。

下一个问题是这条线。
round(((double)rand()/(RAND_MAX)*(MAX-MIN)+MIN));
再次说 MAX 是 4,MIN 是 1。这将正确地产生从 1 ( round(0*(4-1)+1) ) 到 4 ( round(1*(4-1)+1) ) 的任何值。但是,1 到 1.5 会变成 1,而 1.5 到 2.5 会变成 2,同样只有 3.5 到 4 会变成 4。所以 1 和 4 的可能性是其他数字的一半。

要解决这个问题,试试这个
floor(((double)rand()/(RAND_MAX+1)*(1+MAX-MIN)+MIN));
这仍然是从 1 到 4,但给所有可能性平等的机会。 (RAND_MAX+1 部分是为了确保它不会以非常小的概率生成 5)

这就是我计算模式的方式(未经测试):

for (i = 0; i < SIZE; ++i)
{
tally[rnx[i]-MIN] += 1;
}

int modecount = 0;
int mode = -1;
for (i = 0; i <= MAX-MIN; ++i) //<= instead of < because MAX is inclusive, not exclusive
{
if (tally[i] > modecount)
{
mode = i+MIN;
modecount = tally[i];
}
}

在伪代码中:

1) 创建数组,tally,计算每个索引中有多少随机数。

2) 寻找计数中最大的条目并记下它的位置和计数。

然后,要处理多种模式:

一旦你通过 tally完全找到模式,扫描 tally查找与您为您的模式找到的最高计数相同计数的每个条目。所有这些都是模式,如果您不想分配另一个数组来存储它们,则可以在找到它们时将它们打印出来。

关于C 中的计算模式 - 数学有点错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16853166/

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