in reply to Sorting multiple arrays
my @values = ( { name => 'fred', index => 2 }, { name => 'bob', index => 1 }, { name => 'john', index => 4 }, { name => 'peter', index => 3 }, ); my @sorted_values = sort { $a->{index} <=> $b->{index} } @values;
If you wanted to take option 2 because, for instance, you cannot change the data structures in question, you could do something like:
my @sorted_indices = sort { $array_b[$a] <=> $array_b[$b] } 0 .. $#arr +ay_b; @array_a = @array_a[@sorted_indices]; @array_b = @array_b[@sorted_indices];
That, however, is much more fragile and depends a lot on you maintaining parallel data structures. The first option is much more robust and tolerant of change.
|
|---|