G
gamo
I want to speed up this code:
$kk=0;
for (0..7){
$kk++ if (index($k,$res[$_]) >=0);
}
if ($kk==8){
...
TIA
$kk=0;
for (0..7){
$kk++ if (index($k,$res[$_]) >=0);
}
if ($kk==8){
...
TIA
gamo said:I want to speed up this code:
$kk=0;
for (0..7){
$kk++ if (index($k,$res[$_]) >=0);
}
if ($kk==8){
...
TIA
gamo said:I want to speed up this code:
$kk=0;
for (0..7){
$kk++ if (index($k,$res[$_]) >=0);
}
if ($kk==8){
...
Try (untested)
unless ( grep index( $k, $res[ $_]) < 0, 0 .. 7 ) {
Benchmark it. It is shorter, it may or may not be faster.
Anno
I want to speed up this code:
$kk=0;
for (0..7){
$kk++ if (index($k,$res[$_]) >=0);
}
if ($kk==8){
gamo ([email protected]) wrote on MMMMDLV September MCMXCIII in September?
....
The obvious improvement is to stop testing as soon as one test
fails, as you only want to do something if all cases match.
You'd have to benchmark with data that's relevant for your application
(and test both data that matches *and* data that fails).
One way of writing would be:
if (index ($k => $res [0]) >= 0 &&
index ($k => $res [1]) >= 0 &&
index ($k => $res [2]) >= 0 &&
index ($k => $res [3]) >= 0 &&
index ($k => $res [4]) >= 0 &&
index ($k => $res [5]) >= 0 &&
index ($k => $res [6]) >= 0 &&
index ($k => $res [7]) >= 0) {
...
}
For engineering purposes not the best, but you lose the overhead of
a loop (and no additional scopes to enter), and gain the benefit of
skipping the rest of the tests if one fails.
Abigail
g> I want to speed up this code:
g> $kk=0;
g> for (0..7){
g> $kk++ if (index($k,$res[$_]) >=0);
g> }
g> if ($kk==8){
g> ...
my main suggestion is to loop over the @res values directly and not
index to get them. you don't seem to really need the value of $kk (and
it will never get to 8 with a 0 .. 7 loop so that is a bug!)
Best regards.if you must have a check for failure you could use a flag (eww) or wrap
the test in a sub like this (untested):
sub check_for_foolish_value {
my $text = shift ;
foreach my $foolish_value ( @_ ) {
return $foolish_value if
index( $text, $foolish_value ) >= 0 ;
}
return ;
}
i bet even with the sub overhead it will be faster than all that array
indexing. but i could be wrong so someone else should benchmark it.
uri
Want to reply to this thread or ask your own question?
You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.