You have two options:
- Change your data structure to an array of hashes.
- Sort the indices, then apply the sorted indices as a slice to each array.
The first option is better because you end up with a better data structure.
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.
My criteria for good software:
- Does it work?
- Can someone else come in, make a change, and be reasonably certain no bugs were introduced?
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.