Beefy Boxes and Bandwidth Generously Provided by pair Networks
We don't bite newbies here... much
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
          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

In reply to Sorting two dimensional arrays by toonski

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post; it's "PerlMonks-approved HTML":



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others making s'mores by the fire in the courtyard of the Monastery: (3)
As of 2024-04-25 21:07 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found