in reply to Heap sorting in perl
No comments on Heap not having ever used it.
However, unless you are dynamically adding and removing items to your dataset wouldn't something like:
sub smallest_n (&\@$) { my ($cmp, $arrayref, $n) = @_; return unless $n && @$arrayref; $n = @$arrayref if @$arrayref < $n; my @results = sort $cmp @$arrayref[0..$n-1]; local ($a, $b); $a = pop @results; for (my $i = $n; $i < @$arrayref; $i++) { $b = $arrayref->[$i]; if ($cmp->() == 1) { @results = sort $cmp (@results, $b); $a = pop @results; }; }; return (@results, $a); }; use Test::More tests => 1; use List::Util qw(shuffle); my @a = shuffle (1..100000); my @b = smallest_n {$a <=> $b} @a, 5; is_deeply [@b], [1,2,3,4,5];
be easier? The support for the heap datastructure will add a fair bit of overhead with your large dataset, so I wouldn't use one unless you need it.
Update: totally misready what blakem was proposing. D'oh.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Heap sorting in perl
by Anonymous Monk on Apr 05, 2003 at 15:26 UTC | |
by adrianh (Chancellor) on Apr 05, 2003 at 15:40 UTC | |
by Anonymous Monk on Apr 05, 2003 at 15:51 UTC | |
by adrianh (Chancellor) on Apr 05, 2003 at 16:29 UTC | |
by Anonymous Monk on Apr 05, 2003 at 17:02 UTC | |
| |
|
Re: Heap sorting in perl
by Abigail-II (Bishop) on Apr 06, 2003 at 21:04 UTC |