programming-examples/perl/Hash/Sort Hash by Keys Numerically.pl

22 lines
534 B
Perl
Raw Normal View History

2019-11-15 12:59:38 +01:00
sub desc_sort_subject {
$b <=> $a; # Numeric sort descending
}
sub asc_sort_subject{
$a <=> $b; # Numeric sort ascending
}
%courses = (
"101" => "I",
"221" => "L",
"300" => "A",
"102" => "P",
"103" => "P",
"200" => "L",
);
foreach $key (sort asc_sort_subject(keys(%courses))) {
printf "\t%-5d%s\n", $key, $courses{"$key"};
}
foreach $key (sort desc_sort_subject(keys(%courses))) {
printf "\t%-5d%s\n", $key, $courses{"$key"};
}