Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

An array A [ 1 dotsn ] is said to have a majority element if more than half of its entries are the same. Given

An array A[1dotsn] is said to have a majority element if more than half of its entries are the same. Given an array, the task is to design an efficient algorithm to tell whether the array has a majority element, and, if so, to find that element. The elements of the array are not necessarily from some ordered domain like the integers, and so there can be no comparisons of the form "is A[i]>A[i]?".(Think of the array elements as GIF files, say.) However, you can answer questions of the form: "is A[i]=A[i]?" in constant time.
(a) Show how to solve this problem in O(nlogn) time. (Hint: Split the array A into two arrays A1 and A2 of half the size. Does knowing the majority elements of A1 and A2 help you figure out the majority element of A? If so, you can use a divide-and-conquer approach.)
(b) Can you give a linear-time algorithm? (Hint: Here's another divide-and-conquer approach:
Pair up the elements of A arbitrarily, to get n2 pairs.
Look at each pair: if the two elements are different. discard both of them; if they are the same, keep just one of them.
Show that after this procedure there are at most n2 elements left, and that they have a majority element if and only if A does.)
image text in transcribed

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Repairing And Querying Databases Under Aggregate Constraints

Authors: Sergio Flesca ,Filippo Furfaro ,Francesco Parisi

2011th Edition

146141640X, 978-1461416401

More Books

Students also viewed these Databases questions