in reply to Re^2: lsearch for perl?
in thread lsearch for perl?

While I agree that hashes wouldn't be too useful here (being unordered), I think of hashes as having three basic uses (not one):

Replies are listed 'Best First'.
Re^4: lsearch for perl?
by thor (Priest) on Dec 05, 2005 at 19:40 UTC
    I meant association in a looser sense than you mention above. For the first set, you're associating passwords with their respective users. In the second set, you're associating the given values with their type ("joe" is the "id" for this user). As for the uniqueness condition, I agree that it's useful, but not a hash's intended use. Incidentally, I think that the following loop uses less memory:
    my %unique; $unique{$_} = undef foreach @list; @list = keys %unique;
    due to the undef being shared amongst all of the keys of the hash. That may be an urban legend that I heard somewhere, though. ;)

    thor

    The only easy day was yesterday

      I'm pretty sure undef uses less mem, and it's probably a bit faster, but ++ allows you to check which items had duplicates. undef @unique{@list}; is actually fastest.