![]() |
|
Think about Loose Coupling | |
PerlMonks |
Re: How to get 2nd highest value from an array?by gjb (Vicar) |
on Dec 13, 2005 at 23:12 UTC ( #516469=note: print w/replies, xml ) | Need Help?? |
If the list (or hash) is large, first doing a sort is a Really Bad IdeaTM given that this is an O(n log n) operation. As choedebeck's code above illustates it can be done in time linear in the size of the list/hash, i.e., O(n). This is a significant difference for large values of n. Hope this helps, -gjb-
In Section
Seekers of Perl Wisdom
|
|