Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: Answer: How can I find the index of the biggest element in an array?

by Jenda (Abbot)
on May 28, 2007 at 14:09 UTC ( [id://617843]=note: print w/replies, xml ) Need Help??


in reply to Re: How can I find the index of the biggest element in an array?
in thread How can I find the index of the biggest element in an array?

I don't think it's good to scare people with a ternary operator and statement modifier in one statement. I do think

while ($i--) { $max = $i if $data[$i] > $data[$max]; }
would be much more readable. I'd probably write it like this though:
my $max = 0; for (0 .. $#data) { $max = $_ if $data[$_] > $data[$max] }

Update (suggested by ysth): It's actually better to start looping at index 1:

my $max = 0; for (1 .. $#data) { $max = $_ if $data[$_] > $data[$max] }
There's no point in comparing the first element to itself.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://617843]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others romping around the Monastery: (3)
As of 2025-06-19 00:26 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found

    Notices?
    erzuuliAnonymous Monks are no longer allowed to use Super Search, due to an excessive use of this resource by robots.