Skip to content

Instantly share code, notes, and snippets.

@jutememo
Created October 28, 2011 12:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jutememo/1322202 to your computer and use it in GitHub Desktop.
Save jutememo/1322202 to your computer and use it in GitHub Desktop.
data List a = Nil
| Cons a (List a)
deriving Show
xs = Cons 1 (Cons 2 (Cons 3 Nil))
reduceList f z Nil = z
reduceList f z (Cons x xs) = f x (reduceList f z xs)
idList = reduceList Cons Nil
mapList f = reduceList (Cons . f) Nil
filterList p = reduceList (\x xs ->
if p x then Cons x xs
else xs)
Nil
mapListIf p f = reduceList (\x xs ->
if p x then Cons (f x) xs
else Cons x xs)
Nil
appendList xs1 xs2 = reduceList Cons xs2 xs1
reverseList = reduceList (\x xs -> xs `appendList` (Cons x Nil)) Nil
data Tree a = Node a (List (Tree a)) deriving Show
tree = Node 1
(Cons (Node 2 Nil)
(Cons (Node 3
(Cons (Node 5 Nil)
(Cons (Node 6 Nil) Nil)))
(Cons (Node 4 Nil) Nil)))
reduceTree f g z (Node x trees) = f x (reduceList' trees)
where
reduceList' Nil = z
reduceList' (Cons tree trees) = g (reduceTree f g z tree)
(reduceList' trees)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment