|
|
|
|
|
by circlingthesun
2344 days ago
|
|
I had an interesting experience sorting exam papers when I was a TA. I found that quicksort used up too much desk/floor space. I settled on splitting the papers into piles of 10 or so, applying insertion sort on each pile and then pairwise merge sorting them until I had a sorted pile. |
|
You can adapt what you're doing by how the buckets look (huge bucket? do another layer of bucketing in there. Small bucket? Just sort it) and it's easy to see progress and you can "discard" buckets as you go (put them in one output pile as they're done).