Talk:Higher order function

From HaskellWiki
Revision as of 03:00, 8 November 2011 by Yasmin.Fathy (talk | contribs)
Jump to navigation Jump to search

I'm a beginner in Haskell and needs help I need a resourse of haskell from scratch and also need someone to explain in details the quicksort that is published:



quicksort :: Ord a => [a] -> [a] quicksort [] = [] quicksort (p:xs) = (quicksort lesser) ++ [p] ++ (quicksort greater)

   where
       lesser  = filter (< p) xs
       greater = filter (>= p) xs


without line no 1, it works fine what about line three ? and how we use ++ as concatenate ???

Thanks in advance