Commit before changing combining code

This commit is contained in:
2022-06-08 14:49:42 +01:00
parent 51c32e06ad
commit 1b3988f961
2 changed files with 17 additions and 18 deletions
+15 -7
View File
@@ -1,26 +1,34 @@
{-# LANGUAGE TemplateHaskell #-}
module SimpleTrie where
import Data.Map.Strict
import qualified Data.Map.Strict as M
import Control.Lens
data Trie a b = Trie
{ _trieMVal :: Maybe b
, _trieChildren :: Map a (Trie a b)
, _trieChildren :: M.Map a (Trie a b)
}
makeLenses ''Trie
emptyTrie :: Trie a b
emptyTrie = Trie Nothing empty
emptyTrie = Trie Nothing M.empty
singletonTrie :: Ord a => [a] -> b -> Trie a b
singletonTrie (k:ks) x = Trie Nothing $ singleton k $ singletonTrie ks x
singletonTrie [] x = Trie (Just x) empty
singletonTrie (k:ks) x = Trie Nothing $ M.singleton k $ singletonTrie ks x
singletonTrie [] x = Trie (Just x) M.empty
insertInTrie :: Ord a => [a] -> b -> Trie a b -> Trie a b
insertInTrie [] x = trieMVal ?~ x
insertInTrie (k:ks) x = trieChildren %~ insertWith f k (singletonTrie ks x)
insertInTrie (k:ks) x = trieChildren %~ M.insertWith f k (singletonTrie ks x)
where
f _ = insertInTrie ks x
lookupTrie :: Ord a => [a] -> Trie a b -> Maybe b
lookupTrie (k:ks) t = _trieChildren t !? k >>= lookupTrie ks
lookupTrie (k:ks) t = _trieChildren t M.!? k >>= lookupTrie ks
lookupTrie [] t = _trieMVal t
multiLookupTrie :: Ord a => [a] -> Trie a b -> [([a],b)]
multiLookupTrie xs t@(Trie my ch)
| null xs || null ch = maybe [] (\y -> [([],y)]) my
| otherwise = let (z:zs) = xs in
case M.lookup z ch of
Nothing -> multiLookupTrie zs t
Just t' -> map (_1 %~ (z:)) (multiLookupTrie zs t') ++ multiLookupTrie zs t