Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

...using an iterative procedure (no hash table)?

It's not homework. And by mode I mean the most frequent number (statistical mode). I don't want to use a hash table because I want to know how it can be done iteratively.

share|improve this question
1  
Looks like homework. Take a crack at it, show your code. – egrunin Sep 22 '10 at 20:10
Why can't you use a hash table? – Heinzi Sep 22 '10 at 20:10
stackoverflow.com/questions/3740371/… is related, but the algorithm is only guaranteed to work if the most common element occurs > n/2 times – dave Sep 22 '10 at 20:13
1  
Impossible! "Hash table" is a broad term. I think any algorithm that does this can be shown to employ a (perhaps convoluted) type of hash table. – Fantius Sep 22 '10 at 20:54
1  
I think Fantius is right. Computing the mode(s) of a series linearly involves a multi-value count, and you have to store each count somehow. Even if you hid this behind a query language, the implementation behind would revert to iterating through elements and counting them. – KeithS Sep 22 '10 at 21:07
show 1 more comment

4 Answers

up vote 1 down vote accepted

OK Fantius, how bout this?

Sort the list with a RadixSort (BucketSort) algorithm (technically O(N) time; the numbers must be integers). Start at the first element, remember its value and start a count at 1. Iterate through the list, incrementing the count, until you reach a different value. If the count for that value is higher than the current high count, remember that value and count as the mode. If you get a tie with the high count, remember both (or all) numbers.

... yeah, yeah, the RadixSort is not an in-place sort, and thus involves something you could call a hashtable (a collection of collections indexed by the current digit). However, the hashtable is used to sort, not to calculate the mode.

I'm going to say that on an unsorted list, it would be impossible to compute the mode in linear time without involving a hashtable SOMEWHERE. On a sorted list, the second half of this algorithm works by just keeping track of the current max count.

share|improve this answer

Definitely sounds like homework. But, try this: go through the list once, and find the largest number. Create an array of integers with that many elements, all initialized to zero. Then, go through the list again, and for each number, increment the equivalent index of the array by 1. Finally, scan your array and return the index that has the highest value. This will execute in roughly linear time, whereas any algorithm that includes a sort will probably take NlogN time or worse. However, this solution is a memory hog; it'll basically create a bell plot just to give you one number from it.

Remember that many (but not all) languages use arrays that are zero-based, so when converting from a "natural" number to an index, subtract one, and then add one to go from index to natural number.

share|improve this answer
Your array of integers is effectively a hash table, with a perfect hash. – Fantius Sep 22 '10 at 20:51
well :-P to you too. ;-) – KeithS Sep 22 '10 at 21:08

If you don't want to use a hash, use a modified binary search trie (with a counter per node). For each element in the array insert into the trie. If it already exists in the trie, increment the counter. At the end, find the node with the highest counter.

Of course you can also use a hashmap that maps to a counter variable and will work the same way. I don't understand your complaint about it not being iterative... You iterate through the array, and then you iterate through the members of the hashmap to find the highest counter.

share|improve this answer
I think these ideas also violate the "no hashtable" requirement. – Fantius Sep 22 '10 at 20:53

just use counting sort and look into array which store the number occurrences for each entity.h store the number occurrences for each entity.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.