Thread Hash nach Entfernungen sortieren (8 answers)
Opened by jan999 at 2010-02-08 09:16

renee
 2010-02-08 09:29
#132225 #132225
User since
2003-08-04
14371 Artikel
ModeratorIn
[Homepage] [default_avatar]
Code (perl): (dl )
1
2
3
4
5
my @sorted_keys = map{ $_->[0] }sort{ $b->[1] <=> $a->[1] }map{ [ $_, $hash{$_} ] }keys %hash;

for my $key ( @sorted_keys ) {
    print $key, " -> ", $hash{$key},"\n";
}


Das "map-sort-map" nennt man Schwartz'sche Transformation. Das benötigt man häufiger...
OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/)
--

Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html
Perl-Entwicklung: http://perl-services.de/

View full thread Hash nach Entfernungen sortieren