I am really struggling to sort a multi-dimensional associative array. Hopefully someone can help me out.

I have an array such as follows:

%my_array=("Key_One"=>["50","25","100","90"], "Key_Two"=>["35","18","110","72"], "Key_Three=>["100","35","99","82"] );


I am trying to sort key/values according to value for the top "X" number of values per column. For example, if I have "X" set to 2, output for the sample data above would be as follows:

Column One
Key_Three = 100
Key_One = 50

Column Two
Key_Three = 35
Key_One = 25

Column Three
Key_Two = 110
Key_One = 100

Column Four
Key_One = 90
Key_Three = 82

By the way, what is a good resource for someone that wishes to become fluent at sorting data as is required by this problem? Anyone know of a good book that covers this subject well?

Thanks very much in advance.

In reply to Array Sorting Trouble by Anonymous Monk

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.