Find frequency of smallest value in an array
Last Updated :
15 Nov, 2022
Given an array A of N elements. Find the frequency of the smallest value in the array.
Examples:
Input : N = 5, arr[] = {3, 2, 3, 4, 4}
Output : 1
The smallest element in the array is 2
and it occurs only once.
Input : N = 6, arr[] = {4, 3, 5, 3, 3, 6}
Output : 3
The smallest element in the array is 3
and it occurs 3 times.
Simple Approach: A simple method is to first find the minimum element in the array in first traversal. Then traverse the array again and find the number of occurrences of the minimum element.
Efficient Approach: The efficient approach is to do this in a single traversal.
Let us assume the first element to be the current minimum, so the frequency of the current minimum would be 1. Now let's iterate through the array (1 to N), we come across 2 cases:
- Current element is smaller than our current minimum: We change the current minimum to be equal to current element and since this is the first time we are coming across this element, we make its frequency 1.
- Current element is equal to the current minimum: We increment the frequency of current minimum.
Below is the implementation of the above approach:
C++
// C++ program to find the frequency of
// minimum element in the array
#include <bits/stdc++.h>
using namespace std;
// Function to find the frequency of the
// smallest value in the array
int frequencyOfSmallest(int n, int arr[])
{
int mn = arr[0], freq = 1;
for (int i = 1; i < n; i++) {
// If current element is smaller
// than minimum
if (arr[i] < mn) {
mn = arr[i];
freq = 1;
}
// If current element is equal
// to smallest
else if (arr[i] == mn)
freq++;
}
return freq;
}
// Driver Code
int main()
{
int N = 5;
int arr[] = { 3, 2, 3, 4, 4 };
cout << frequencyOfSmallest(N, arr);
return 0;
}
Java
// Java program to find the frequency of
// minimum element in the array
import java.io.*;
class GFG
{
// Function to find the frequency of the
// smallest value in the array
static int frequencyOfSmallest(int n, int arr[])
{
int mn = arr[0], freq = 1;
for (int i = 1; i < n; i++)
{
// If current element is smaller
// than minimum
if (arr[i] < mn)
{
mn = arr[i];
freq = 1;
}
// If current element is equal
// to smallest
else if (arr[i] == mn)
freq++;
}
return freq;
}
// Driver Code
public static void main (String[] args)
{
int N = 5;
int arr[] = { 3, 2, 3, 4, 4 };
System.out.println (frequencyOfSmallest(N, arr));
}
}
// This code is contributed by Tushil.
Python3
# Python 3 program to find the frequency of
# minimum element in the array
# Function to find the frequency of the
# smallest value in the array
def frequencyOfSmallest(n,arr):
mn = arr[0]
freq = 1
for i in range(1,n):
# If current element is smaller
# than minimum
if (arr[i] < mn):
mn = arr[i]
freq = 1
# If current element is equal
# to smallest
elif(arr[i] == mn):
freq += 1
return freq
# Driver Code
if __name__ == '__main__':
N = 5
arr = [3, 2, 3, 4, 4]
print(frequencyOfSmallest(N, arr))
# This code is contributed by
# Surendra_Gangwar
C#
// C# program to find the frequency of
// minimum element in the array
using System;
class GFG
{
// Function to find the frequency of the
// smallest value in the array
static int frequencyOfSmallest(int n, int []arr)
{
int mn = arr[0], freq = 1;
for (int i = 1; i < n; i++)
{
// If current element is smaller
// than minimum
if (arr[i] < mn)
{
mn = arr[i];
freq = 1;
}
// If current element is equal
// to smallest
else if (arr[i] == mn)
freq++;
}
return freq;
}
// Driver Code
public static void Main()
{
int N = 5;
int []arr = { 3, 2, 3, 4, 4 };
Console.WriteLine(frequencyOfSmallest(N, arr));
}
}
// This code is contributed by Ryuga
PHP
<?php
// PHP program to find the frequency of
// minimum element in the array
// Function to find the frequency of the
// smallest value in the array
function frequencyOfSmallest($n, $arr)
{
$mn = $arr[0];
$freq = 1;
for ($i = 1; $i < $n; $i++)
{
// If current element is smaller
// than minimum
if ($arr[$i] < $mn)
{
$mn = $arr[$i];
$freq = 1;
}
// If current element is equal
// to smallest
else if ($arr[$i] == $mn)
$freq++;
}
return $freq;
}
// Driver Code
$N = 5;
$arr = array( 3, 2, 3, 4, 4 );
print(frequencyOfSmallest($N, $arr));
// This code is contributed by mits
?>
JavaScript
<script>
// Javascript program to find the frequency of
// minimum element in the array
// required answer
// Function to find the frequency of the
// smallest value in the array
function frequencyOfSmallest(n, arr)
{
let mn = arr[0], freq = 1;
for (let i = 1; i < n; i++)
{
// If current element is smaller
// than minimum
if (arr[i] < mn)
{
mn = arr[i];
freq = 1;
}
// If current element is equal
// to smallest
else if (arr[i] == mn)
freq++;
}
return freq;
}
let N = 5;
let arr = [ 3, 2, 3, 4, 4 ];
document.write(frequencyOfSmallest(N, arr));
</script>
Time Complexity: O(N), where N is the size of the given array.
Auxiliary Space: O(1), no extra space is required, so it is a constant.
Similar Reads
Least frequent element in an array Given an array, find the least frequent element in it. If there are multiple elements that appear least number of times, print any one of them. Examples : Input : arr[] = {1, 3, 2, 1, 2, 2, 3, 1}Output : 3Explanation: 3 appears minimum number of times in given array. Input : arr[] = {10, 20, 30}Outp
11 min read
Find k smallest elements in an array Given an array arr[] and an integer k, the task is to find k smallest elements in the given array. Elements in the output array can be in any order.Examples:Input: arr[] = [1, 23, 12, 9, 30, 2, 50], k = 3Output: [1, 2, 9]Input: arr[] = [11, 5, 12, 9, 44, 17, 2], k = 2Output: [2, 5]Table of Content[A
15 min read
Smallest greater elements in whole array An array is given of n length, and we need to calculate the next greater element for each element in the given array. If the next greater element is not available in the given array then we need to fill '_' at that index place. Examples : Input : 6 3 9 8 10 2 1 15 7 Output : 7 6 10 9 15 3 2 _ 8 Here
11 min read
Find the smallest and second smallest elements in an array Given an array arr[] of integers, find the smallest and second smallest distinct elements in the array. The result should be returned in ascending order, meaning the smallest element should come first, followed by the second smallest. If there is no valid second smallest (i.e., all elements are the
13 min read
Find closest smaller value for every element in array Given an array of integers, find the closest smaller element for every element. If there is no smaller element then print -1 Examples: Input : arr[] = {10, 5, 11, 6, 20, 12} Output : 6, -1, 10, 5, 12, 11 Input : arr[] = {10, 5, 11, 10, 20, 12} Output : 5 -1 10 5 12 11 A simple solution is to run two
4 min read