![]() |
![]()
| ![]() |
![]()
NAMEAlgorithm::MinMax - Finding the minimum and maximum of an array with at most 3n/2 - 2 comparisons. SYNOPSISuse Algorithm::MinMax; @a = ( 3, 2, 5, 4, 8, 9 ); @r = Algorithm::MinMax->minmax( \@a ); # $r[0] = minimum = 2 # $r[1] = maximum = 9 DESCRIPTIONThe implementation finds the minimum and maximum of a given array with at most 3n/2 - 2 comparisons, where n is the number of elements of the array. RETURNReturns an array where the first entry is the minimum and the second entry the maximum of the given array. If minmax is called with an empty array, minmax will also return an empty array. AUTHORDaniel Etzold, detzold@gmx.de
|