Given an array of n integers, where one element appears more than n/2 times. We need to find that element in linear time and constant extra space.
YAAQ: Yet another arrays question.
|
1
|
Given an array of n integers, where one element appears more than n/2 times. We need to find that element in linear time and constant extra space. YAAQ: Yet another arrays question.
|
||||
|
|
|
This is what I thought initially. I made an attempt to keep the invariant "one element appears more than n/2 times", while reducing the problem set. Lets start comparing a[i], a[i+1]. If they're equal we compare a[i+i], a[i+2]. If not, we remove both a[i], a[i+1] from the array. We repeat this until i>=(current size)/2. At this point we'll have 'THE' element occupying the first (current size)/2 positions. This would maintain the invariant. The only caveat is that we assume that the array is in a linked list [for it to give a O(n) complexity.] What say folks? -bhupi |
||
|
|
|
|
Find the median, it takes O(n) on an unsorted array. Since more than n/2 elements are equal to the same value, the median is equal to that value as well. |
||
|
|
|
|
I'm not the author of this code, but this will work for your problem. The first part looks for a potential leader, the second checks if it appears more than n/2 times in the array. |
|||
|
|
|
|
Well you can do an inplace radix sort as described here[pdf] this takes no extra space and linear time. then you can make a single pass counting consecutive elements and terminating at count > n/2. |
||
|
|
|
|
How about: randomly select a small subset of K elements and look for duplicates (e.g. first 4, first 8, etc). If K == 4 then the probability of not getting at least 2 of the duplicates is 1/8. if K==8 then it goes to under 1%. If you find no duplicates repeat the process until you do. (assuming that the other elements are more randomly distributed, this would perform very poorly with, say, 49% of the array = "A", 51% of the array ="B"). e.g.:
This is a constant order operation (if the data set isn't bad) so then do a linear scan of the array in order(N) to verify. |
||
|
|
|
|
I have a sneaking suspicion it's something along the lines of (in C#)
It sounds unlikely to work, but it does. (Proof as a postscript file, courtesy of Boyer/Moore.) |
||||
|
|
|
My first thought (not sufficient) would be to:
But that would be O(n log n), as would any recursive solution. If you can destructively modify the array (and various other conditions apply) you could do a pass replacing elements with their counts or something. Do you know anything else about the array, and are you allowed to modify it? Edit Leaving my answer here for posterity, but I think Skeet's got it. |
|||
|
|