fromList and toList methods

This commit is contained in:
Mats Rauhala 2019-01-02 18:10:31 +02:00
parent 08fdd68302
commit 61a6efe94e
1 changed files with 10 additions and 1 deletions

View File

@ -12,6 +12,9 @@ module Data.BKTree where
import Data.Functor.Foldable
import Data.Functor.Foldable.TH
import GHC.Generics (Generic)
import Data.List (foldl')
import Data.Foldable (foldMap)
import Data.Monoid (Endo(..))
-- Point for testing purposes
data Point = Point Int Int deriving Show
@ -25,7 +28,7 @@ class Metric a where
data Tuple a = Tuple !Int a deriving (Show, Functor, Foldable, Traversable)
data BKTree a = Empty
| Node !a [Tuple (BKTree a)] deriving (Show, Generic)
| Node !a [Tuple (BKTree a)] deriving (Show, Generic, Functor, Traversable, Foldable)
makeBaseFunctor ''BKTree
@ -35,6 +38,12 @@ empty = Empty
singleton :: Metric a => a -> BKTree a
singleton a = insert a empty
fromList :: Metric a => [a] -> BKTree a
fromList = foldl' (\acc x -> insert x acc) empty
toList :: BKTree a -> [a]
toList tree = appEndo (foldMap (\x -> Endo ([x] ++)) tree) []
insert :: Metric a => a -> BKTree a -> BKTree a
insert a = \case
Empty -> Node a []