On Monday, 23 April 2012 at 11:27:40 UTC, Steven Schveighoffer
wrote:

I think using std.string.icmp is the best solution. I would expect it to outperform even schwartz sort.

-Steve

icmp took longer... added about 1 sec vs  0.3 sec (for
schwartzSort ) to the program execution time.

bool myComp(string x, string y) { return std.string.icmp(x,y)<0; }
std.algorithm.sort!(myComp)(dirs);

finished! time:1396 ms




Reply via email to