Hi,

I have several arrays of the same length where each indexed element is related i.e. $array_a[0] is linked to $array_b[0] etc. and the same for all other elements / arrays.

One of the arrays is numeric - I want to sort this array, but perform the same sort on the other arrays so that the elements remain lined up

e.g. 

array_a = (fred,bob,john,peter)
array_b = (2,1,4,3)

After sorting numerically on array_b

array_a = (bob,fred,peter,john)
array_b = (1,2,3,4)

Any suggestions for a simple way to this would be appreciated. If I can't do it with arrays like this, should I change the data structure to something else?

Hoping you can help,

Andy


In reply to Sorting multiple arrays by Kempie

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



  • 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:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.