If you have 65536 random English words with length 1-32 per word that you need to count for appearance and sort based on dictionary or appearance rank, how do you structure the data and what sorting technique would you use to process it the fastest?
|
1
|
|||||||||||
|
|
|
65,000 words is, in all seriousness, a minuscule sorting problem. Unless you have to re-sort it many times per minute, I would suggest you just use the I'd suggest using a simple array of char pointers for the alpha order. For maintaining the frequency order, you'll can use a structure such as:
in another array, which you can populate fully whenever you create or modify the alpha-sorted array of pointers (see below for my reasoning why this seemingly inefficient process is suitable). As an example of the speed, consider the following piece of code:
On a 3GHz dual core Intel chip, here's the outputs from a few select values of MAXWDS:
So, as you can see, qsort is fairly efficient for the data set sizes you're talking about. In fact, implementing the whole process for maintaining two sorted lists, as shown in the code below, shows you exactly how insignificant 66,000 elements are. The basic premise is to:
The following code shows how that's done. The only mildly tricky bit is the transfer from the alpha array to the frequency array.
And the output for 66,000 random strings is (the first few strings are there so you can see that the sort worked):
So, even if you do those operations every single time you insert or delete a value, they will have no discernible impact (unless obviously, if you're doing it more than once every couple of seconds, but then you would think about batching the changes for efficiency). |
|||
|
|
|
|
Merge Sort should work well for this and is pretty easy to get working in c. |
||
|
|
|
|
I would use whatever sorting algorithm my runtime library happened to provide. Typically, sort() uses quicksort. Don't worry about the choice of sort algorithm until you know that your standard one isn't working well enough because you've measured it. |
||
|
|
|
|
You can use
use the standard qsort to sort by word or by frequency, or use a second array if you need both orders a the same time. |
||
|
|
|
|
check out http://www.sorting-algorithms.com/ for a nice visual representation of different sorting methods. |
||||||
|
|
|
Choosing a sorting algorithm depends on the amount of data (65k aren't many) you have and the tradeoff beetween time and memory you choose. If the data should be retrieved really fast, you will have to use more memory. On the other hand you can't find the records that fast if you decide to save on memory. The choice of algorithm is pretty easy - use whatever your languages library offers unless you have proof that this doesn't work well enough. You need the data sorted by two criteria, so you actually need two sorted arrays. Both of them should be arrays of pointers of some kind. |
||
|
|
|
|
It sounds as though you must sort it in two different ways:
|
|||
|
|
|
|
Use a trie. That way, both "sorts" will be simple traversals of the graph. |
||
|
|
|
|
Oh dear, what a poorly worded homework question - the tutor should know better than this. The last part is "to process it the fastest". Unfortunately, it is very, very difficult to determine how long an algorithm will take to execute. Big O notation doesn't help as that is a measure of complexity, not speed (for more information about this, see Raymond Chen's recent blog entry). The only practical way is to implement the algorithm, run it and measure the time taken. Also, the input data can affect the execution time - qsort and binary trees are non-optimal for data that is already sorted. You could write an entire paper on "fastest" and still not get a concrete answer. Skizz |
||
|
|
