Thanks for answering my last question about sorting multiple arrays by the same order. I've gotten out of so many jams with solutions from Perl monks and I appreciate it. My question now is about sorting 2 dimentional arrays. say I have the following:
@myarray = (
['one','two','three','four'],
['first','second','third','fourth'],
['jim','bob','bill','sally'],
);
and I want to sort it by by the nth index. I can do this:
@myarray = sort {$a->[$n] cmp $b->[$n]} @myarray;
but instead of doing all that, let's say I wanted to sort this array multiple times, and instead of wasting CPU power, I wanted to record the order to an array instead. I can do that with a one dimensional array doing the following:
my @arraylist = sort {$myarray[$a] cmp $myarray[$b]} 0..$#myarray;
for $listitem (@arraylist) {
print $myarray[$listitem];
}
but how do I refer to an array reference, like in a 2d array with this? So that I can do this:
for $listitem (@arraylist) {
print $myarray[$listitem][0] . "<br>";
print $myarray[$listitem][1] . "<br>";
print $myarray[$listitem][2] . "<br>";
}
Thanks again for all your help.
edited by ybiC: rename from "Another silly sorting question" to facilitate search
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.