Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

This function does the same as exists does with hashes.

I plan on use it a lot.

Can it be optimized in some way?

my @a = qw/a b c d/;

my $ret = array_exists("b", @a);

sub array_exists {
    my ($var, @a) = @_;

    foreach my $e (@a) {
        if ($var eq $e) {
            return 1;
        }
    }
    return 0;
}
share|improve this question
avoid copying @_: sub array_exists { my $x = shift; for my $_ (@_) { return 1 if $x eq $_ } } – user5402 Aug 4 '11 at 13:33
1  
1  
But skip the smart match part of that answer from the current docs. I wrote it and it's broken. – brian d foy Aug 4 '11 at 14:27

6 Answers

up vote 6 down vote accepted

You can use smart matching, available in Perl 5.10 and later:

if ("b" ~~ @a) {
    # "b" exists in @a
}

This should be much faster than a function call.

share|improve this answer
2  
See my answer for the pitfall of this. My advice now is to not ever use the smart match operator. blogs.perl.org/users/brian_d_foy/2011/07/… – brian d foy Aug 4 '11 at 14:23
@brian: I never use ~~ on anything but a one-dimensional array of simple scalars, which seems to be safe anyway. – eugene y Aug 4 '11 at 15:14
You think you never use it any other way, until some bug inserts data you don't expect. Even then, you have to explain all of those edge cases every time you use the ~~ now. It's easier to not use it then explain all the gotchas so you don't burn the next programmer to come along, or check your array to ensure it has no references (which means iterating over the entire array). – brian d foy Aug 4 '11 at 15:50
@brian: I would say that the same applies to each(), while(<>) or m//o, etc. Do you ever use any of these? – eugene y Aug 4 '11 at 17:16
You might say the same applies to those, but I challenge you to demonstrate it. – brian d foy Aug 5 '11 at 13:08
show 1 more comment

If you have to do this a lot on a fixed array, use a hash instead:

 my %hash = map { $_, 1 } @array;

 if( exists $hash{$key} ) { ... }

Some people reach for the smart match operator, but that's one of the features that we need to remove from Perl. You need to decide if this should match, where the array hold an array reference that has a hash reference with the key b:

use 5.010;

my @a = (
    qw(x y z),
    [ { 'b' => 1 } ],
    );

say 'Matches' if "b" ~~ @a; # This matches

Since the smart match is recursive, if keeps going down into data structures. I write about some of this in Rethinking smart matching.

share|improve this answer
+1 A hash is also easier to update with changing data. – TLP Aug 4 '11 at 14:46
that's baby and bathwaterish. I think keeping smartmatch and adding superpositions should allow safe simple use in simple cases, and explicit $item ~~ any(@array) otherwise – ysth Aug 4 '11 at 15:34
1  
If you are going to use any(), you don't need the smart match. It doesn't do anything to help you there. – brian d foy Aug 4 '11 at 15:48
@brian d foy : Why remove features from Perl? Do you know of a list of features that shouldn't be used for this reason? – Sandra Schlichting Aug 5 '11 at 8:01
1  
We remove features because they are broken. It's happened several times. I haven't made a complete list. – brian d foy Aug 5 '11 at 13:06
show 1 more comment

I'd use List::MoreUtils::any.

my $ret = any { $_ eq 'b' } @a;
share|improve this answer
When checking the source code for List::MoreUtils::any, I think this solution is pretty much identical to the one the OP already has. – TLP Aug 4 '11 at 14:43
Thanks @brian, I removed that part of my answer. – gpojd Aug 4 '11 at 14:53
@TLP, the difference is that the any method looks cleaner and he is not reinventing something that is stable and tested. Also, List::MoreUtils has an XS version that can be installed that should be faster. – gpojd Aug 4 '11 at 14:57
@gpojd It's still a subroutine call which is slower than a simple operator – eugene y Aug 4 '11 at 15:00
@gpo That might be, but performance was the issue. I think it is a good idea to not just take package solutions without checking under the hood. – TLP Aug 4 '11 at 15:05

brian d foy suggested using a hash, which gives O(1) lookups, at the cost of slightly more expensive hash creation. There is a technique that Marc Jason Dominus describes in his book Higher Order Perl where by a hash is used to memoize (or cache) results of a sub for a given parameter. So for example, if findit(1000) always returns the same thing for the given parameter, there's no need to recalculate the result every time. The technique is implemented in the Memoize module (part of the Perl core).

Memoizing is not always a win. Sometimes the overhead of the memoized wrapper is greater than the cost of calculating a result. Sometimes a given parameter is unlikely to ever be checked more than once or a relatively few times. And sometimes it cannot be guaranteed that the result of a function for a given parameter will always be the same (ie, the cache can become stale). But if you have an expensive function with stable return values per parameter, memoization can be a big win.

Just as brian d foy's answer uses a hash, Memoize uses a hash internally. There is additional overhead in the Memoize implementation, but the benefit to using Memoize is that it doesn't require refactoring the original subroutine. You just use Memoize; and then memoize( 'expensive_function' );, provided it meets the criteria for benefitting from memoization.

I took your original subroutine and converted it to work with integers (just for simplicity in testing). Then I added a second version that passed a reference to the original array rather than copying the array. With those two versions, I created two more subs that I memoized. I then benchmarked the four subs.

In benchmarking, I had to make some decisions. First, how many iterations to test. The more iterations we test, the more likely we are to have good cache hits for the memoized versions. Then I also had to decide how many items to put into the sample array. The more items, the less likely to have cache hits, but the more significant the savings when a cache hit occurs. I ultimately decided on an array to be searched containing 8000 elements, and chose to search through 24000 iterations. That means that on average there should be two cache hits per memoized call. (The first call with a given param will write to the cache, while the second and third calls will read from the cache, so two good hits on average).

Here is the test code:

use warnings;
use strict;
use Memoize;
use Benchmark qw/cmpthese/;

my $n = 8000; # Elements in target array
my $count = 24000; # Test iterations.

my @a = ( 1 .. $n );
my @find = map { int(rand($n)) } 0 .. $count;
my ( $orx, $ormx, $opx, $opmx ) = ( 0, 0, 0, 0 );

memoize( 'orig_memo' );
memoize( 'opt_memo'  );

cmpthese( $count, {
    original  => sub{ my $ret =  original( $find[ $orx++  ],  @a ); },
    orig_memo => sub{ my $ret = orig_memo( $find[ $ormx++ ],  @a ); },
    optimized => sub{ my $ret = optimized( $find[ $opx++  ], \@a ); },
    opt_memo  => sub{ my $ret =  opt_memo( $find[ $opmx++ ], \@a ); }
} );

sub original {
    my ( $var, @a) = @_;
    foreach my $e ( @a ) {
        return 1 if $var == $e;
    }
    return 0;
}

sub orig_memo {
    my ( $var, @a ) = @_;
    foreach my $e ( @a ) {
        return 1 if $var == $e;
    }
    return 0;
}

sub optimized {
    my( $var, $aref ) = @_;
    foreach my $e ( @{$aref} ) {
        return 1 if $var == $e;
    }
    return 0;
}

sub opt_memo {
    my( $var, $aref ) = @_;
    foreach my $e ( @{$aref} ) {
        return 1 if $var == $e;
    }
    return 0;
}

And here are the results:

             Rate orig_memo  original optimized  opt_memo
orig_memo   876/s        --      -10%      -83%      -94%
original    972/s       11%        --      -82%      -94%
optimized  5298/s      505%      445%        --      -66%
opt_memo  15385/s     1657%     1483%      190%        --

As you can see, the memoized version of your original function was actually slower. That's because so much of the cost of your original subroutine was spent in making copies of the 8000 element array, combined with the fact that there is additional call-stack and bookkeeping overhead with the memoized version.

But once we pass an array reference instead of a copy, we remove the expense of passing the entire array around. Your speed jumps considerably. But the clear winner is the optimized (ie, passing array refs) version that we memoized (cached), at 1483% faster than your original function. With memoization the O(n) lookup only happens the first time a given parameter is checked. Subsequent lookups occur in O(1) time.

Now you would have to decide (by Benchmarking) whether memoization helps you. Certainly passing an array ref does. And if memoization doesn't help you, maybe brian's hash method is best. But in terms of not having to rewrite much code, memoization combined with passing an array ref may be an excellent alternative.

share|improve this answer
Yeah, I was going to talk about Memoize, but I was lazy. It might be a much better situation in some situations, but these things depend on the situation. +1 :) – brian d foy Aug 5 '11 at 13:10
By the way, using any{...} memoized beats opt_memo, and comes within 9% of an "or cache" (orcish maneuver) function (which wouldn't benefit from memoizing). I had a hard time testing a pure hash approach as building the hash in one step didn't seem to be weighing into my test well. – DavidO Aug 5 '11 at 16:56

Your current solution iterates through the array before it finds the element it is looking for. As such, it is a linear algorithm.

If you sort the array first with a relational operator (>for numeric elements, gt for strings) you can use binary search to find the elements. It is a logarithmic algorithm, much faster than linear.

Of course, one must consider the penalty of sorting the array in the first place, which is a rather slow operation (n log n). If the contents of the array you are matching against change often, you must sort after every change, and it gets really slow. If the contents remain the same after you've initially sorted them, binary search ends up being practically faster.

share|improve this answer
3  
if repeated testing for existence is required I would put the elements of the array in a hash instead of sorting them and using binary search. The initial hashing will cost approx. the same as sorting, but the hash lookup will be a lot faster because it is implemented directly by perl whereas binary search isn't. – user5402 Aug 4 '11 at 13:46

You can use grep:

sub array_exists {
  my $val = shift;
  return grep { $val eq $_ } @_;
}

Surprisingly, it's not off too far in speed from List::MoreUtils' any(). It's faster if your item is at the end of the list by about 25% and slower by about 50% if your item is at the start of the list.

You can also inline it if needed -- no need to shove it off into a subroutine. i.e.

if ( grep { $needle eq $_ } @haystack ) {
  ### Do something
  ...
}
share|improve this answer
2  
to not get tripped up on false values, just make sure you're in scalar context - perhaps return scalar(grep { $val eq $_ } @_) is better/safer – user5402 Aug 5 '11 at 5:00
@user5402 : Does this also apply to the inline solution? – Sandra Schlichting Aug 5 '11 at 8:08
@Sandra - no it doesn't because if always evaluates its argument in scalar context. – user5402 Aug 5 '11 at 13:09
1  
@user5402: It can be in list context with no problems. If there're no matches it'll return an empty list. For ex: perl -E 'say "got something: $_" for grep { $_ == 20 } ( 1 .. 10 )' – Oesor Aug 5 '11 at 14:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.