Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,955 questions

51,897 answers

573 users

How to get the frequency of smallest array value in C

2 Answers

0 votes
#include <stdio.h>

int minArr(int arr[], int size) {
    int minval = arr[0];
    for (int i = 1; i < size; i++) {
        if (arr[i] < minval) {
            minval = arr[i];
        }
    }
    return minval;
}

int main()
{
    int arr[] = { 6, 4, 4, 7, 3, 3, 3, 5, 5, 7, 8, 3, 4, 3 };
    int size = sizeof(arr) / sizeof(arr[0]);

    int frequency = 0;

    int min = minArr(arr, size);

    for (int i = 1; i < size; i++) {
        if (arr[i] == min) {
            frequency++;
        }
    }

    printf("%d", frequency);

    return 0;
}




/*
run:

5

*/

 

 



answered Aug 17, 2022 by avibootz
0 votes
#include <stdio.h>

int get_smallest_frequency(int arr[], int size) {
    int min = arr[0], frequency = 1;

    for (int i = 1; i < size; i++) {
        if (arr[i] < min) {
            min = arr[i];
            frequency = 1;
        }
        else if (arr[i] == min)
            frequency++;
    }

    return frequency;
}

int main()
{
    int arr[] = { 6, 4, 4, 7, 3, 3, 3, 5, 5, 7, 8, 3, 4, 3 };
    int size = sizeof(arr) / sizeof(arr[0]);

    printf("%d", get_smallest_frequency(arr, size));

    return 0;
}




/*
run:

5

*/

 

 



answered Aug 17, 2022 by avibootz

Related questions

1 answer 102 views
1 answer 114 views
1 answer 118 views
1 answer 134 views
3 answers 164 views
1 answer 91 views
...