Re: Newby question re quicksort

27 Apr
2009
27 Apr
'09
1:30 a.m.
I think you miss something important here: quickslop :: (Ord a) => [a] ->[a] quickslop [] = [] quickslop (x:xs) = quickslop [a | a <- xs, a <= x] ++ [x] ++ quickslop [b | b <- xs, b > x] -- View this message in context: http://www.nabble.com/Newby-question-re-quicksort-tp23250159p23250345.html Sent from the Haskell - Glasgow-haskell-users mailing list archive at Nabble.com.
5868
Age (days ago)
5868
Last active (days ago)
0 comments
1 participants
participants (1)
-
leledumbo