1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
|
module Data.Trie.Internal where
import Prelude hiding ( lookup )
import qualified Prelude as P ( lookup )
data InternalTrie a = InternalTrie (Maybe a) [(Char, InternalTrie a)]
deriving (Show, Eq)
empty' :: InternalTrie a
empty' = InternalTrie Nothing []
null' :: InternalTrie a -> Bool
null' t = case t of
InternalTrie Nothing [] -> True
_ -> False
singleton' :: String -> a -> InternalTrie a
singleton' str v = foldr (\c t -> InternalTrie Nothing [(c, t)]) (InternalTrie (Just v) []) str
insert' :: String -> a -> InternalTrie a -> (Bool, InternalTrie a)
insert' [] v (InternalTrie old ts) = case old of
Nothing -> (True, InternalTrie (Just v) ts)
Just _ -> (False, InternalTrie (Just v) ts)
insert' (c:cs) v (InternalTrie v' ts) = case P.lookup c ts of
Nothing -> let t' = singleton' cs v
in (True, InternalTrie v' ((c, t') : ts))
Just t -> let (incr, t') = insert' cs v t
in (incr, InternalTrie v' ((c, t') : (filter (\(c', _) -> c' /= c) ts)))
delete' :: String -> InternalTrie a -> Maybe (InternalTrie a)
delete' k (InternalTrie v ts) = do
r <- case k of
[] -> case v of
Nothing -> Nothing
Just _ -> Just $ InternalTrie Nothing ts
(c:cs) -> case P.lookup c ts of
Nothing -> Nothing
Just t -> do
t' <- delete' cs t
return $ InternalTrie v (if null' t then filter (\(c', _) -> c' /= c) ts
else (c, t') : (filter (\(c', _) -> c' /= c) ts))
return $ sanitize r
where
sanitize :: InternalTrie a -> InternalTrie a
sanitize (InternalTrie v' ts') = InternalTrie v' (filter (not . null' . snd) ts')
lookup' :: String -> InternalTrie a -> Maybe a
lookup' [] (InternalTrie v _) = v
lookup' (c:cs) (InternalTrie _ ts) = case P.lookup c ts of
Nothing -> Nothing
Just t -> lookup' cs t
toList' :: InternalTrie a -> [(String, a)]
toList' (InternalTrie v ts) = case v of
Nothing -> concatMap (\(c, t) -> map (\(s, w) -> (c:s, w)) (toList' t)) ts
Just z -> ("", z) :
concatMap (\(c, t) -> map (\(s, w) -> (c:s, w)) (toList' t)) ts
instance Functor InternalTrie where
fmap f (InternalTrie v ts) = InternalTrie (fmap f v) (map (second (fmap f)) ts)
second :: (a -> b) -> (c, a) -> (c, b)
second f (x, y) = (x, f y) |