Skip to content

Instantly share code, notes, and snippets.

@andbroby
Created March 28, 2015 19:20
Show Gist options
  • Save andbroby/fe35d721562afdadcef3 to your computer and use it in GitHub Desktop.
Save andbroby/fe35d721562afdadcef3 to your computer and use it in GitHub Desktop.
data Tree a = EmptyTree | Node a (Tree a) (Tree a) deriving (Show, Read, Eq)
singleton :: a -> Tree a
singleton x = Node x EmptyTree EmptyTree
treeInsert :: (Ord a) => a -> Tree a -> Tree a
treeInsert x EmptyTree = singleton x
treeInsert x (Node a left right)
| x == a = Node x left right
| x < a = Node a (treeInsert x left) right
| x > a = Node a left (treeInsert x right)
treeElem :: (Ord a) => a -> Tree a -> Bool
treeElem x EmptyTree = False
treeElem x (Node a left right)
| x < a = treeElem x left
| x > a = treeElem x right
| otherwise = True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment