in reply to Re^2: Need a faster way to find matches
in thread Need a faster way to find matches
my @chopped_array = map { $_ >> 1 } @original_array; my %result; foreach my $i1 (0..$#chopped_array) { foreach my $i2 ($i1..$#chopped_array) { $result{ $original_array[$i1] } = $original_array[$i2] unless +$chopped_array[$i1] & $chopped_array[$i2]; } }
Or something like this.my %hash = map { ($_ >> 1) => 1 } @original_array; my %result; foreach (keys %hash) { $result{($_ << 1) + 1} = ~($_ << 1) if $hash{ ~$_ }; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^4: Need a faster way to find matches
by remzak (Acolyte) on Jan 17, 2010 at 18:19 UTC | |
by kikuchiyo (Hermit) on Jan 17, 2010 at 19:17 UTC | |
by remzak (Acolyte) on Jan 18, 2010 at 00:25 UTC | |
by kikuchiyo (Hermit) on Jan 18, 2010 at 10:01 UTC |