- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我正在尝试创建一个返回排序数组模式的函数,但它无法正常工作。当没有模式时它工作得很好但是只要有模式我得到:
模式:< 0.000, 0.000, 0.000, 0.000, 0.000 >
这是函数
void findMode(double * a, unsigned int size)
{
double number = a[0]; //Used to to compare values in the array to see if they're similar
int count = 1; //Keeps track of number of occurences for each number
int max = 1; //Keeps track of max number of occurences found for each number
int uniqueNum = 1; //Keeps track of how many unique values in the array
int maxCount = 1; //Counts how many set's of numbers occur the max ammount of times
int elementNum = 0; //Keeps track of element number in mode array
for (unsigned i = 1; i < size; ++i)//loop to determine how many modes and unique numbers there are
{
if (number == a[i])
{
++count; //if the numbers the two numbers compared are the same, count is increased by 1
}
else
{
if (count == max)
{
++maxCount; //Keeps track of how many modes are in the array
}
if (count > max)
{
//If the two numbers compared are not the same and the count of the previous "set" of similar numbers is higher than the current max count, max is equal to the new count
max = count;
maxCount = 1; //Reset the max count if a new max is found
}
//Count is set back to 1 as we are counting a different number
count = 1;
number = a[i];
++uniqueNum; //Unique number variable gets incremented
}
}
count = 1; //sets count back to 1 for next loop
if ((double)size / max != uniqueNum)
{
double mode[sizeof((double)maxCount)]; //makes the mode array the right size to store all the modes
for (unsigned i = 1; i < size; ++i)//loop to determine what the modes are
{
if (number == a[i])
{
++count; //if the numbers the two numbers compared are the same, count is increased by 1
}
else
{
if (count == max)
{
mode[elementNum] = a[i];
++elementNum;
}
//Count is set back to 1 as we are counting a different number
count = 1;
}
}
printf("\nMode: {");
for (int i = 0; i <= (sizeof(mode) / sizeof(mode[0])); ++i)
{
printf(" %.3lf ", &mode[i]);
}
printf("}");
}
else
{
printf("\nNo mode");
}
}
据我所知,整个函数可能是垃圾,我需要重新开始,或者它可能只是 1 个小错误。
最佳答案
根据我的理解,众数是一组数字中出现次数最多的值。您的代码存在一些小问题,无法按预期运行。
首先如评论中所述,模式数组始终定义为 8,因为 sizeof((double)maxCount) 在大多数系统(取决于平台)上始终计算为 8 个字节。应该是:
double modes[maxCount];
注意:为避免编译警告和错误,如果您使用的是 gcc,则可能需要使用 -std=c99 对其进行编译。
就在第二个 for 循环之前,您忘记将变量 number 重新分配给数组“a”的第一个元素。
因此,第二个 for 循环仅将变量“number”(作为最后一个 for 循环的结果,从“a”中分配了一个值)与“a”中的所有其他数字进行比较,因此它不是实际找到模式。
现在,在你的第二个 for 循环中,当你发现该数字 != a[i] 时,你忘记将变量“数字”刷新为数组“a”中的不相等元素。
所以基本上,函数的 for 循环应该如下所示:
for (unsigned int i = 1; i < size; i++)//loop to determine how many modes and unique numbers there are
{
if (number == a[i])
{
++count; //if the numbers the two numbers compared are the same, count is increased by 1
}
else
{
if (count == max)
{
printf("inside. a = %.3lf\n", a[i]);
++maxCount; //Keeps track of how many modes are in the array
}
if (count > max)
{
printf("Reset. a = %.3lf\n", a[i]);
//If the two numbers compared are not the same and the count of the previous "set" of similar numbers is higher than the current max count, max is equal to the new count
max = count;
maxCount = 1; //Reset the max count if a new max is found
}
//Count is set back to 1 as we are counting a different number
count = 1;
number = a[i];
++uniqueNum; //Unique number variable gets incremented
}
printf("a = %.3lf count = %d and max = %d\n", a[i], count, max);
}
if (count == max){ // handle the case where the lat couple of numbers are the same e.g {1.0, 2.0, 3.0, 3.0, 3.0, 3.0, 4.0, 4.0, 4.0, 4.0};
++maxCount;
}
count = 1; //sets count back to 1 for next loop
// printf("max = %d\n", max);
if ((double) (size / max) != ((double)uniqueNum))
{
double mode[maxCount]; //makes the mode array the right size to store all the modes
number = a[0];
for (unsigned int i = 1; i < size; i++)//loop to determine what the modes are
{
if (number == a[i])
{
++count; //if the numbers the two numbers compared are the same, count is increased by 1
}
else
{
if (count == max)
{
mode[elementNum++] = number;
}
//Count is set back to 1 as we are counting a different number
count = 1;
number = a[i];
}
}
if (count == max){
mode[elementNum++] = number;
}
printf("\nMode: {");
for (int i = 0; i < maxCount; i++)
{
printf(" %.3lf ", mode[i]);
}
printf("}\n");
}
else
{
printf("\nNo mode");
}
注意:这可能不完全是您所追求的,但它应该会引导您朝着正确的方向前进。
关于C 函数查找数组中的模式,打印出一个全为 0 的数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35518143/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!