查找数组中出现次数最多的数字

时间:2019-12-01 02:40:57

标签: c

我已经调试了一个晚上,但是仍然不知道出了什么问题。假设我输入了一个由6个数字组成的数组,它们是{100,150,150,200,200,250},因为150和200出现相同的时间,然后输出较小的数字。

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

int main() {
    int  arr[20] = { NULL }, num, result;
    printf("Input a number(1-20) and enter a series of numbers in ascending order: \n");
    scanf_s("%d", &num);
    for (int k = 0; k < num; k++) {
        scanf_s("%d", &arr[k]);
    }
    int c1, c2, i, j;
    int temp = 0;
    j = result = 0;
    c1 = c2 = 1;
    for (i = 1; i <= num-2; i++) {                /*Add c1 if the value is the same*/
        int a = arr[i];
        if (arr[i+1] == a) c1++;
        else {
            j = i + 1;
            temp = arr[j];
            while (1) {
                if (arr[j+1] == temp) {
                    c2++;
                    j++;
                }
                else break;
            }
        }
        if (c2 > c1) {                  /*Move i to the position after j*/
            c1 = 0;
            result = temp;
        }   
        if ((c2 < c1) || (c2 == c1)) {  /*Move j to the next position*/
            result = a;
            c2 = 0;
        }
        i = j + 1;
    }
    printf("Number that appears the most time:%d\n", result);
    return 0;
}

我会在取得一些进展后每次进行修改 到目前为止,这是我所做的。 输出对于{100,150,150,200,200,250}是正确的,但是现在,如果我输入一个包含8个数字的较大数组{100,100,100,150,150,200,250,300},则循环将停滞。帮助@@

1 个答案:

答案 0 :(得分:0)

此部分中的错误:

while (i <= num) {                /*Add c1 if the value is the same*/
        if (arr[i+1] == a) 

这里我应该小于num-1,当您得到数字时,索引从0到num-1,通常i<num可以,但是您在内部进行了i+1循环,因此循环只能从0num-2运行。 不过,从您的逻辑来看,应该是arr[i]而不是arr[i+1]

这部分

        int a = arr[i];
        if (arr[i+1] == a) c1++;

为什么要给arr [i]的值赋一个值,然后再次检查arr [i + 1]?您只会使c1随着每个重复值的增加而增加。 最后是这部分。

i=j+1

这会导致无限循环。

尽管这不是一个好的解决方案,但这可能会解决您的问题:

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

int main() {
    int  arr[20], num, result;
    printf("Input a number(1-20) and enter a series of numbers in ascending order: \n");
    scanf("%d", &num);
    printf("Now enter the numbers");
    for (int k = 0; k < num; k++) {
        scanf("%d", &arr[k]);
    }
    int c1, c2, i, j;
    int temp = 0;
    j = 0;
    result=arr[0];
    c2 = 1;
    for (i = 0; i < num; i++) {                /*Add c1 if the value is the same*/
        int a = arr[i];
        c1=1;
        for(j=i+1;j<num;j++)
        {
            if (arr[i]==arr[j])
            {
                c1+=1;
            }
        }
        if(c1>c2)
        {
            c2=c1;
            result=arr[i];
        }
        else if(c1==c2 && result>arr[i])
        {
            result=arr[i];
        }
    }
    printf("Number that appears the most time:%d\n", result);
    return 0;
}

除此之外,它还可以解决您的问题。构造一个{int key,int count}的结构,然后使用它存储数组中所有唯一成员的计数,然后提取所需的内容。

这是我所说的代码,如果您还不了解指针和动态内存,可能很难看一下。但是你会明白的。

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

int main()
{
    struct counts
    {
        int key;
        int count;
    };
    int * data;
    int num;
    printf("Enter the number of data:");
    scanf("%d",&num);
    data=malloc(num*sizeof(int));

    int i,j;
    printf("Enter the data in order:");
    for (i=0;i<num;i++)
    {
        scanf("%d",data+i);
    }

    struct counts *table;
    int table_len=1;
    int flag;
    table=malloc(sizeof(struct counts));
    table[0].key=data[0];
    table[0].count=1;
    for (i=1;i<num;i++)
    {
        flag=0;
        for(j=0;j<table_len;j++)
        {
            if (table[j].key==data[i])
            {
                flag=1;
                table[j].count+=1;
                break;
            }
        }
        if (flag==0)
        {
            table=realloc(table,++table_len* sizeof(struct counts));
            table[table_len-1].key=data[i];
            table[table_len-1].count=1;
        }
    }
    //if you want to see at the table
    printf("data\t\tcount\n");
    for(i=0;i<table_len;i++)
    {
        printf(" %d\t\t%d\n",table[i].key,table[i].count);
    }
    //now to extract the value
    int answer,count;
    answer=table[0].key;
    count=table[0].count;
    for(i=1;i<table_len;i++)
    {
        if(count>table[i].count)
        {
            continue;
        }
        else if(count<table[i].count)
        {
            answer=table[i].key;
            count=table[i].count;
        }
        else if(answer>table[i].key)
        {
            answer=table[i].key;
        }
    }
    printf("The number with highest frequency is: %d\n",answer);
    return 0;    
}