-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtrie26.gv
66 lines (66 loc) · 1.28 KB
/
trie26.gv
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
digraph {
node [shape=rect];
edge [arrowhead=vee];
"" -> "a"
"a" -> "ar"
"ar" -> "art"
"art" [color=red shape=note];
"a" -> "at"
"at" [color=red shape=note];
"" -> "b"
"b" -> "ba"
"ba" -> "bat"
"bat" [color=red shape=note];
"bat" -> "batm"
"batm" -> "batma"
"batma" -> "batman"
"batman" [color=red shape=note];
"bat" -> "bats"
"bats" -> "batsm"
"batsm" -> "batsma"
"batsma" -> "batsman"
"batsman" [color=red shape=note];
"bat" -> "batt"
"batt" -> "battl"
"battl" -> "battle"
"battle" [color=red shape=note];
"battle" -> "battles"
"battles" -> "battlesh"
"battlesh" -> "battleshi"
"battleshi" -> "battleship"
"battleship" [color=red shape=note];
"" -> "l"
"l" -> "le"
"le" -> "let"
"let" [color=red shape=note];
"let" -> "lett"
"lett" -> "lette"
"lette" -> "letter"
"letter" [color=red shape=note];
"lett" -> "letti"
"letti" -> "lettin"
"lettin" -> "letting"
"letting" -> "lettings"
"lettings" [color=red shape=note];
"l" -> "li"
"li" -> "lio"
"lio" -> "lion"
"lion" [color=red shape=note];
"li" -> "liq"
"liq" -> "liqu"
"liqu" -> "liquo"
"liquo" -> "liquor"
"liquor" [color=red shape=note];
"" -> "z"
"z" -> "ze"
"ze" -> "zeb"
"zeb" -> "zebr"
"zebr" -> "zebra"
"zebra" [color=red shape=note];
"ze" -> "zet"
"zet" -> "zeta"
"zeta" [color=red shape=note];
"z" -> "zo"
"zo" -> "zoo"
"zoo" [color=red shape=note];
}