Wednesday, July 3, 2024
HomeData ModellingData Structure & AlgorithmFind element in a sorted array whose frequency is greater than...

Find element in a sorted array whose frequency is greater than or equal to n/2.

Given a sorted array of length n, find the number in array that appears more than or equal to n/2 times. It is given that such element always exists.

Examples: 

Input :  2 3 3 4
Output : 3

Input :  3 4 5 5 5 
Output : 5

Input : 1 1 1 2 3
Output : 1

To find that number, we traverse the array and check the frequency of every element in array if it is greater than or equals to n/2 but it requires extra space and time complexity will be O(n). 

But we can see that the if there is number that comes more than or equal to n/2 times in a sorted array, then that number must be present at the position n/2 i.e. a[n/2].

Implementation:

C++




// C++ code to find majority element in a
// sorted array
#include <iostream>
using namespace std;
  
int findMajority(int arr[], int n)
{
    return arr[n / 2];
}
  
int main()
{
    int arr[] = { 1, 2, 2, 3 };
    int n = sizeof(arr) / sizeof(arr[0]);
    cout << findMajority(arr, n);
    return 0;
}


Java




// Java code to find majority element in a
// sorted array
public class Test {
  
    public static int findMajority(int arr[], int n)
    {
        return arr[n / 2];
    }
    public static void main(String args[])
    {
        int arr[] = { 1, 2, 2, 3 };
        int n = arr.length;
        System.out.println(findMajority(arr, n));
    }
}


Python 3




# Python 3 code to find
# majority element in a
# sorted array
  
def findMajority(arr, n):
  
    return arr[int(n / 2)]
  
# Driver Code
arr = [1, 2, 2, 3]
n = len(arr) 
print(findMajority(arr, n))
  
# This code is contributed by Smitha.


C#




// C# code to find majority element in a
// sorted array
using System;
  
public class GFG {
  
    public static int findMajority(int []arr, int n)
    {
        return arr[n / 2];
    }
      
    // Driver code
    public static void Main()
    {
          
        int []arr = { 1, 2, 2, 3 };
        int n = arr.Length;
          
        Console.WriteLine(findMajority(arr, n));
    }
}
  
// This code is contributed by vt_m. 


PHP




<?php
// PHP code to find majority 
// element in a sorted array
  
function findMajority($arr, $n)
{
    return $arr[intval($n / 2)];
}
  
    // Driver Code
    $arr = array(1, 2, 2, 3);
    $n = count($arr);
    echo findMajority($arr, $n);     
      
// This code is contributed by Sam007
?>


Javascript




<script>
  
// Javascript code to find majority element in a
// sorted array
  
function findMajority(arr,  n)
{
    return arr[(Math.floor(n / 2))];
}
  
// driver code 
  
    let arr = [ 1, 2, 2, 3 ];
    let n = arr.length;
    document.write(findMajority(arr, n));
  
</script>


Output

2

Time Complexity : O(1)
Auxiliary Space: O(1)

Related Articles : 
Majority element in an unsorted array 
Check for majority element in a sorted array

This article is contributed by Amit Kumar. If you like neveropen and would like to contribute, you can also write an article using write.neveropen.co.za or mail your article to review-team@neveropen.co.za. See your article appearing on the neveropen main page and help other Geeks. 

Feeling lost in the world of random DSA topics, wasting time without progress? It’s time for a change! Join our DSA course, where we’ll guide you on an exciting journey to master DSA efficiently and on schedule.
Ready to dive in? Explore our Free Demo Content and join our DSA course, trusted by over 100,000 neveropen!

Nango Kalahttps://www.kala.co.za
Experienced Support Engineer with a demonstrated history of working in the information technology and services industry. Skilled in Microsoft Excel, Customer Service, Microsoft Word, Technical Support, and Microsoft Office. Strong information technology professional with a Microsoft Certificate Solutions Expert (Privet Cloud) focused in Information Technology from Broadband Collage Of Technology.
RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments