Created
October 25, 2015 19:33
-
-
Save amar47shah/afa4a4f6632f18b3ceb0 to your computer and use it in GitHub Desktop.
How to extract common form...?
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
| module JoinList where | |
| import Sized | |
| import Data.Monoid ((<>)) | |
| data JoinList m a = Empty | |
| | Single m a | |
| | Append m (JoinList m a) (JoinList m a) | |
| deriving (Eq, Show) | |
| (+++) :: Monoid m => JoinList m a -> JoinList m a -> JoinList m a | |
| j +++ k = Append (tag j <> tag k) j k | |
| tag :: Monoid m => JoinList m a -> m | |
| tag Empty = mempty | |
| tag (Single t _) = t | |
| tag (Append t _ _) = t | |
| foldJ :: c -> (b -> a -> c) -> (b -> c -> c -> c) -> JoinList b a -> c | |
| foldJ e _ _ Empty = e | |
| foldJ _ s _ (Single t x) = s t x | |
| foldJ e s a (Append t l r) = a t (foldJ e s a l) (foldJ e s a r) | |
| indexJ :: (Sized b, Monoid b) => Int -> JoinList b a -> Maybe a | |
| indexJ _ Empty = Nothing | |
| indexJ i (Single _ x) | |
| | i > 0 = Nothing | |
| | i == 0 = Just x | |
| | otherwise = Nothing | |
| indexJ i (Append t l r) | |
| | i >= wholeSize = Nothing | |
| | i > leftSize = indexJ (i - leftSize) r | |
| | i == leftSize = indexJ 0 r | |
| | i > 0 = indexJ i l | |
| | i == 0 = indexJ 0 l | |
| | otherwise = Nothing | |
| where wholeSize = getSize . size $ t | |
| leftSize = getSize . size $ tag l | |
| dropJ :: (Sized b, Monoid b) => Int -> JoinList b a -> JoinList b a | |
| dropJ _ Empty = Empty | |
| dropJ i jl@(Single _ _) | |
| | i > 0 = Empty | |
| | i == 0 = jl | |
| | otherwise = jl | |
| dropJ i jl@(Append t l r) | |
| | i >= wholeSize = Empty | |
| | i > leftSize = dropJ (i - leftSize) r | |
| | i == leftSize = r | |
| | i > 0 = dropJ i l +++ r | |
| | i == 0 = jl | |
| | otherwise = jl | |
| where wholeSize = getSize . size $ t | |
| leftSize = getSize . size $ tag l | |
| takeJ :: (Sized b, Monoid b) => Int -> JoinList b a -> JoinList b a | |
| takeJ _ Empty = Empty | |
| takeJ i jl@(Single _ _) | |
| | i > 0 = jl | |
| | i == 0 = Empty | |
| | otherwise = Empty | |
| takeJ i jl@(Append t l r) | |
| | i >= wholeSize = jl | |
| | i > leftSize = l +++ takeJ (i - leftSize) r | |
| | i == leftSize = l | |
| | i > 0 = takeJ i l | |
| | i == 0 = Empty | |
| | otherwise = Empty | |
| where wholeSize = getSize . size $ t | |
| leftSize = getSize . size $ tag l |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Half-brained attempt: