ex159 is
trie
(
V type,
cp codepoint,
children container.ordered_map codepoint (trie V),
val option V
)
is
add(from String, to V) =>
c := cp from
n :=
if from.codepoint_length = 1
ch := (children[c] ? nil => (container.ordered_map codepoint (trie V)).empty
| el trie => el.children)
trie c ch to
else
el := (children[c] ? nil => trie V c
| el0 trie => el0)
el.add (from.substring 1) to
trie c (children.add c n) val
find(s String) option V =>
if s.is_empty
val
else
children[cp s] ? nil => nil
| t trie => t.find (s.substring 1)
trie(V type, cp codepoint) => trie V cp (container.ordered_map codepoint (trie V)).empty nil
trie(V type) => trie V (cp "#")
cp (s String)
pre
debug: !s.is_empty
=> s.as_codepoints.first.get
e0 := trie String
e1 := e0.add "one" "eins"
e2 := e1.add "two" "zwei"
e3 := e2.add "three" "drei"
e4 := e3.add "four" "vier"
e5 := e4.add "five" "fünf"
e6 := e5.add "six" "sechs"
e7 := e6.add "seven" "sieben"
e8 := e7.add "eight" "acht"
e9 := e8.add "nine" "neun"
e := e9.add "ten" "zehn"
show (s String) => say "$s \t=> {e.find s}"
show "eleven"
show "ten"
show "nine"
show "eight"
show "seven"
show "six"
show "five"
show "four"
show "three"
show "two"
show "one"
show "zero"