in reply to Re: How can I do a numeric sort on a substring? [Benchmark]
in thread How can I do a numeric sort on a substring?
you are only testing with 10 elements in your @unordered array.
for n elements you have in best case O(n*log(n)) comparisons but O(n) packs and unpacks with ST and GRT, which means the overhead to extract n numbers will account much more for small n.
use at least n >> 1000 elements for a real benchmark.
Rule of thumb : the choice of algorithm is almost always neglectable for small data.
it's like getting the Porsche out of the garage to buy a six-pack of beer just 10m around the corner.
Cheers Rolf
(addicted to the Perl Programming Language :)
Wikisyntax for the Monastery
|
|---|