Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

C++ Exercises: Count the number of occurrences of given number in a sorted array of integers

C++ Array: Exercise-20 with Solution

Write a C++ program to count the number of occurrences of given number in a sorted array of integers.

Pictorial Presentation:

C++ Exercises: Count the number of occurences of given number in a sorted array of integers

Sample Solution:

C++ Code :

#include <iostream>
using namespace std;

int count_occurrences(int arr[], int n, int x)
{
    int result = 0;
    for (int i=0; i<n; i++)
        if (x == arr[i])
          result++;
    return result;
}
 
int main()
{
    int nums[] = {5, 7, 8, 8, 5, 8, 7, 7}; 
    int n = sizeof(nums)/sizeof(nums[0]);
    cout << "Original array: ";
    for (int i=0; i < n; i++) 
    cout << nums[i] <<" ";
    int x = 7;
    cout <<"\nNumber of occurrences of 7 : " << count_occurrences(nums, n, x);
    return 0;
    }

Sample Output:

Original array: 5 7 8 8 5 8 7 7 
Number of occurrences of 7 : 3

Flowchart:

Flowchart: Count the number of occurences of given number in a sorted array of integers

C++ Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a C++ program to find a number which occurs odd number of times of a given array of positive integers. In the said array all numbers occur even number of times.
Next: Write a C++ program to find the two repeating elements in a given array of integers.

What is the difficulty level of this exercise?