From your sentence that starts with "Basically" I would conclude that you have 3 values per item, a scalar aka number(A), a string(B) and another value(C). I would guess A has duplicate values (0 for example)? Does B have duplicate values? Does the combination of A and B have duplicate values?

What is the operation that you have to do the most? Checking for values greater than zero? Or searching for C given A and/or B ?

These questions are all important. For example if B has no duplicate values and you most often have to search for C given B you might just use B as key and a subhash or subarray with A and C as data:

$h{$B}= {'number'=>$A,'value'=>$C}; print $h{$B}{value}; if ($h{$B}{number}>0) { ...

Or if checking for values greater than zero is your main activity and most of the scalars(A) are zero then it might even be sensible to split the data into two arrays (or hashes), one for all data with A==0 and another for the data with A>0.


In reply to Re: Get same position value in 2nd array by jethro
in thread Get same position value in 2nd array by Phinix

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.