User a better sorting algorithm
Brought to you by:
jlechem
The current applicaiton (v 1.2.1) reads all the data in from the file to memory and then sorts it. A better solution might be to create a sorted list as the items are read in from the file rather then sorting a possibly very large in memory vector.
Anonymous