To solve the issue in the shortest amount of time
- Divide the array into two parts of size n/2.
- Name the first array A1 and the second array.
- Take this same majority component from. and call it m1, then take the majority component from A2.
- Determine if the number for m1 or m2 is more than the array A' size.
A majority of both the element is found using the following algorithm:
function
Input: an array of numbers
Output: majority value of array s
if (m=1)
return
role="math" localid="1659777799481"
if :
return l_elem
if : l_sum > mid + 1:
return l_elem
else if r_sum > mid + 1:
return r_elem
else
return no - majority - elememts
Algorithm to find the frequency of the algorithm:
function
Input: an array of numbers
Output: count of element of the array s
for i = 1 to m :
if
return count
Explanation:
• "majority" is indeed a divide-and-conquer method which it accepts this same array "" as an input argument and employs the divide-and-conquer approach.
• It returns s[1] after checking if the index of the final member of the array is equal to 1.
• Divide the size of the index by two to get the middle member in the array, and use the ceilings procedure to have the centre element & allocate this to the variables "mid"
• Have the overwhelming element of both the left and right arrays by executing the same majority method with half of the array as a parameter.
• Next, make sure that both components are equal.
If yes, return the majority element of the left array.
• Using the function frequency, determine the frequency of the majority element in the left and right arrays.
• Return the element if the count of the element in the left array is larger than half of the items in the array "".
• Otherwise, return the element if the count of the right array element is larger than half of the items in the array "".
• Alternatively, no-majority-elements will be returned.
As a result, in each function call, it splits an array split two as well as searches each array through constant division of a array until the element is located with a consistent amount of time..
It takes time to search each array and a linear time of O(n) to count the majority element.
The recurrence relation is shown below:
role="math" localid="1659779003024" …… (1)
Consider the master theorem for the following recurrence equation,
…… (2)
By comparing equation (1) and (2), the value of “nc” is “n”, “c” is 1, “b” is “2” and “a” is 2.
By master’s theorem, if the value of c = logb a, then the running time is,
…… (3)
Check if c = logb a :
logb a …… (4)
Substitute the value of “b” as “2” and “a” as “2” in equation (4).
logb a = logb 2 = 1
Thus, the value of logb a is equal to “c”.
Substitute the value of “c” as 1 in equation (3). The running time of algorithm is shown below:
Therefore, the algorithm takes a run time of O(n long) .