Created
September 5, 2017 13:33
-
-
Save purpleP/c94cdbe3f2ffd74cdb7ad32ca5b0b688 to your computer and use it in GitHub Desktop.
Efficient algorithm for finding minimum and maximum value from sequence
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import Data.Tuple (swap) | |
import System.Environment (getArgs) | |
minmax (a:b:xs) = foldl (minmax') (sort' (a, b)) (pairs xs) | |
where minmax' (curmin, curmax) candidates = (newmin, newmax) | |
where (cmin, cmax) = sort' candidates | |
newmin = if cmin < curmin then cmin else curmin | |
newmax = if cmax > curmax then cmax else curmin | |
sort' tup@(a, b) = if a <= b then tup else swap tup | |
pairs :: [a] -> [(a, a)] | |
pairs (a:b:as) = (a, b):(pairs as) | |
pairs (c:[]) = (c, c):[] | |
pairs [] = [] | |
main = do | |
args <- getArgs | |
let [from, till] = map read args :: [Int] | |
print $ minmax [from..till] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment