Puzzle: Find the most common entry in an array - Stack Overflow most recent 30 from stackoverflow.com 2009-12-19T21:19:31Z http://stackoverflow.com/feeds/question/278488 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array 4 Puzzle: Find the most common entry in an array Jason Sundram 2008-11-10T17:02:42Z 2008-11-12T22:37:20Z <p>You are given a 32-bit unsigned integer array with length up to 2<sup>32</sup>, with the property that more than half of the entries in the array are equal to N, for some 32-bit unsigned integer N. Find N looking at each number in the array only once and using at most 2 kB of memory.</p> <p>Your solution must be deterministic, and guaranteed to find N.</p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278521#278521 15 Answer by Jon Skeet for Puzzle: Find the most common entry in an array Jon Skeet 2008-11-10T17:13:27Z 2008-11-10T17:13:27Z <p>Keep one integer for each bit, and increment this collection appropriately for each integer in the array.</p> <p>At the end, some of the bits will have a count higher than half the length of the array - those bits determine N. Of course, the count will be higher than the number of times N occurred, but that doesn't matter. The important thing is that any bit which isn't part of N <em>cannot</em> occur more than half the times (because N has over half the entries) and any bit which is part of N <em>must</em> occur more than half the times (because it will occur every time N occurs, and any extras).</p> <p>(No code at the moment - about to lose net access. Hopefully the above is clear enough though.)</p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278601#278601 2 Answer by Franci Penov for Puzzle: Find the most common entry in an array Franci Penov 2008-11-10T17:37:51Z 2008-11-10T17:37:51Z <p>Pseudo code (notepad C++ :-)) for Jon's algorithm:</p> <pre><code>int lNumbers = (size_of(arrNumbers)/size_of(arrNumbers[0]); for (int i = 0; i &lt; lNumbers; i++) for (int bi = 0; bi &lt; 32; bi++) arrBits[i] = arrBits[i] + (arrNumbers[i] &amp; (1 &lt;&lt; bi)) == (1 &lt;&lt; bi) ? 1 : 0; int N = 0; for (int bc = 0; bc &lt; 32; bc++) if (arrBits[bc] &gt; lNumbers/2) N = N | (1 &lt;&lt; bc); </code></pre> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278670#278670 0 Answer by Brian for Puzzle: Find the most common entry in an array Brian 2008-11-10T18:04:52Z 2008-11-10T18:04:52Z <p>I have recollections of this algorithm, which might or might not follow the 2K rule. It might need to be rewritten with stacks and the like to avoid breaking the memory limits due to function calls, but this might be unneeded since it only ever has a logarithmic number of such calls. Anyhow, I have vague recollections from college or a recursive solution to this which involved divide and conquer, the secret being that when you divide the groups in half, at least one of the halves still has more than half of its values equal to the max. The basic rule when dividing is that you return two candidate top values, one of which is the top value and one of which is some other value (that may or may not be 2nd place). I forget the algorithm itself.</p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278680#278680 0 Answer by Unsliced for Puzzle: Find the most common entry in an array Unsliced 2008-11-10T18:10:03Z 2008-11-10T18:10:03Z <p>I'm not answering the question, but how can you make practical constraints </p> <blockquote> <p>using at most 2 kB</p> </blockquote> <p>while seeking the solution be language agnostic? </p> <p>(I know why you're adding that constraint, you don't just want us to keep a keyed array of basic tallies for each possible integer, but just commenting on the inconsistency.) </p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278704#278704 16 Answer by buti-oxa for Puzzle: Find the most common entry in an array buti-oxa 2008-11-10T18:22:16Z 2008-11-10T18:22:16Z <p><a href="http://www.cs.utexas.edu/users/moore/best-ideas/mjrty/index.html" rel="nofollow">Boyer and Moore's "Linear Time Majority Vote Algorithm"</a> - go down the array maintaining your current guess at the answer. </p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/278826#278826 1 Answer by David Nehme for Puzzle: Find the most common entry in an array David Nehme 2008-11-10T19:05:10Z 2008-11-11T16:58:47Z <p>You are guaranteed that the majority is strictly more than half the number of elements. At each step, maintain a best-estimate on the majority item, together with a count of the number of times it has been "voted" for, minus the number of times it has been "voted" against. When the vote reaches 0, then you change to a new guess. The majority element is guaranteed to be the last one standing, and the "count" is the number of times it appears in the array in excess of the majority.</p> <pre><code> unsigned get_majority(const unsigned value[], unsigned N) { unsigned guess, i; unsigned count_guess = 0; for (i = 0; i &lt; N; ++i) { if (count_guess == 0) { guess = value[i]; ++count_guess; } else { count_guess += (value[i] == guess) ? 1 : -1; } } return guess; } </code></pre> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/279876#279876 3 Answer by Jason Hernandez for Puzzle: Find the most common entry in an array Jason Hernandez 2008-11-11T02:55:45Z 2008-11-11T03:20:51Z <p>You can do this with only two variables.</p> <pre><code>public uint MostCommon(UInt32[] numberList) { uint suspect = 0; int suspicionStrength = -1; foreach (uint number in numberList) { if (number==suspect) { suspicionStrength++; } else { suspicionStrength--; } if (suspicionStrength&lt;=0) { suspect = number; } } return suspect; } </code></pre> <p>Make the first number the suspect number, and continue looping through the list. If the number matches, increase the suspicion strength by one, if it doesn't match lower the suspicion strength by one. If the suspicion strength hits 0 the current number becomes the suspect number. This will <em>not</em> work to find the most common number, only a number that is more than 50% of the group. Resist the urge to add a check if suspsicionStrenght is greater than half the list length- it will always result in more total comparisons.</p> <p>-Jason </p> <p>P.S. I have not tested this code- Use it at your own peril.</p> http://stackoverflow.com/questions/278488/puzzle-find-the-most-common-entry-in-an-array/285646#285646 0 Answer by Brian for Puzzle: Find the most common entry in an array Brian 2008-11-12T22:37:20Z 2008-11-12T22:37:20Z <p>Proof of correctness for buti-oxa / Jason Hernandez's answer, assuming Jason's answer is the same as buti-oxa's answer and both work the way the algorithm described should work:</p> <p>We define adjusted suspicion strength as being equal to suspicion strength if top value is selected or -suspicion strength if top value is not selected. Every time you pick the right number, the current adjusted suspicion strength increases by 1. Each time you pick a wrong number, it either drops by 1 or increases by 1, depending on if the wrong number is currently selected. So, the minimum possible ending adjusted suspicion strength is equal to number-of[top values] - number-of[other values]</p>