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 BinaryTree a = Empty
| Leaf a
| Branch (BinaryTree a) a (BinaryTree a)
deriving Show
btree = Branch (Leaf 1)
2
(Branch (Branch Empty
4
(Leaf 5))
3
Empty)
reduceBinaryTree f g z Empty = z
reduceBinaryTree f g z (Leaf x) = g x
reduceBinaryTree f g z (Branch l x r) = f (reduceBinaryTree f g z l)
x
(reduceBinaryTree f g z r)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment