MAJORITY ELEMENT

Revision en1, by Unknown_712, 2021-03-08 09:10:13

Given an array A of N elements. Find the majority element in the array. A majority element in an array A of size N is an element that appears more than N/2 times in the array.

Input: N = 3 A[] = {1,2,3} Output: -1 Explanation: Since, each element in {1,2,3} appears only once so there is no majority element.

The task is to complete the function majorityElement() which returns the majority element in the array. If no majority exists, return -1.

CAN ANY SOLVE THIS QUESTION IN - TIME COMPLEXICTY O(N) SPACE COMPLEXICITY O(1)

History

 
 
 
 
Revisions
 
 
  Rev. Lang. By When Δ Comment
en2 English Unknown_712 2021-03-08 09:12:12 168
en1 English Unknown_712 2021-03-08 09:10:13 566 A BEAUTIFUL PROBLEM OF MAJORITY ELEMENT (published)