Created
May 4, 2015 22:15
-
-
Save pikeas/be5de8cbc9e62bb1f9fd to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
insert :: LogMessage -> MessageTree -> MessageTree | |
insert msg@LogMessage{} Leaf = Node Leaf msg Leaf | |
insert msg1@(LogMessage _ ts1 _) (Node left msg2@(LogMessage _ ts2 _) right) = case ts1 < ts2 of | |
True -> Node (insert msg1 left) msg2 right | |
False -> Node left msg2 (insert msg1 right) | |
insert _ tree@Node{} = tree |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment