-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path..dot
More file actions
45 lines (45 loc) · 1.29 KB
/
..dot
File metadata and controls
45 lines (45 loc) · 1.29 KB
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
digraph "Suffix tree" {
node [shape=circle] ;
edge [fontname = "helvetica"] ;
n0 [label="" ] ;
n0 -> n3 [label="c"] ;
n0 -> n6 [label="t"] ;
n0 -> n10 [label="gctt"] ;
n0 -> n17 [label="$"] ;
n1 [label="0" shape=square] ;
n2 [label="1" shape=square] ;
n3 [label="" ] ;
n3 -> n12 [label="tt"] ;
n3 -> n8 [label="gctt"] ;
n3 -> n0 [constraint=false style=dotted] ;
n4 [label="2" shape=square] ;
n5 [label="3" shape=square] ;
n6 [label="" ] ;
n6 -> n7 [label="cgctt$"] ;
n6 -> n14 [label="t"] ;
n6 -> n16 [label="$"] ;
n6 -> n0 [constraint=false style=dotted] ;
n7 [label="4" shape=square] ;
n8 [label="" ] ;
n8 -> n1 [label="cgctt$"] ;
n8 -> n9 [label="$"] ;
n8 -> n10 [constraint=false style=dotted] ;
n9 [label="5" shape=square] ;
n10 [label="" ] ;
n10 -> n2 [label="cgctt$"] ;
n10 -> n11 [label="$"] ;
n10 -> n12 [constraint=false style=dotted] ;
n11 [label="6" shape=square] ;
n12 [label="" ] ;
n12 -> n4 [label="cgctt$"] ;
n12 -> n13 [label="$"] ;
n12 -> n14 [constraint=false style=dotted] ;
n13 [label="7" shape=square] ;
n14 [label="" ] ;
n14 -> n5 [label="cgctt$"] ;
n14 -> n15 [label="$"] ;
n14 -> n6 [constraint=false style=dotted] ;
n15 [label="8" shape=square] ;
n16 [label="9" shape=square] ;
n17 [label="10" shape=square] ;
}