http://www.perlmonks.org?node_id=1064326


in reply to Re^2: Best method to diff very large array efficiently
in thread Best method to diff very large array efficiently

I undef @arr_2_hash{@arr_2}; in sub hash_grep(), noting it was faster than the OP's original.

Changing this @diff3{@arr_1} = @arr_1; to @diff3{@arr_1} = () makes some difference.

No--it makes a huge difference and it, by far, blows everything else away. Will make that change in a new sub and re-benchmark. Glad you mentioned it!

Replies are listed 'Best First'.
Re^4: Best method to diff very large array efficiently
by LanX (Saint) on Nov 25, 2013 at 22:51 UTC
    Well I think it depends on the testcase, I tried random numbers in an intervall 1..1e6 like BUK did.

    See my benchmark here RFC extending Benchmark.pm to facilitate CODEHASHREF

    Maybe I did something wrong ...

    ... but I'm not to keen to continue, IMHO all approaches are already fast enough.

    Cheers Rolf

    ( addicted to the Perl Programming Language)

    update

    oops undef @hash{@arr} is significantly faster than @hash{@arr}=()

      Well I think it depends on the testcase...

      Indeed, I think you're correct. And since the OP had some very specific specs, the qualified language "based upon benchmarking for this task" was used when characterizing the benchmarking results.

      It was surprising to see how 'slow' Set::Scalar was, in this case. It may, in part, have to do with it maintaining the object-accessible universe of numbers from which the diff is calculated -- also accessed via the returned object.


      update

      Yes, undef @diff3{@arr_1} makes the OP's original solution faster than using @diff3{@arr_1} = (). Have updated the benchmarking. Thank you, again.