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++

1 Answer

0 votes
#include <iostream>

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]);

    std::cout << get_smallest_frequency(arr, size);

    return 0;
}




/*
run:

5

*/

 

 



answered Aug 17, 2022 by avibootz

Related questions

2 answers 134 views
1 answer 114 views
1 answer 118 views
1 answer 135 views
3 answers 164 views
1 answer 91 views
...