Skip to content

Instantly share code, notes, and snippets.

@jogojapan
Created April 20, 2012 05:58
Show Gist options
  • Save jogojapan/2426456 to your computer and use it in GitHub Desktop.
Save jogojapan/2426456 to your computer and use it in GitHub Desktop.
A couple suffix trees in the Graphviz dot format
//
// These are dot graphs used for the little figures in some
// of my suffix-tree related posts on Stackoverflow, in
// particular:
//
// http://stackoverflow.com/a/9513423/777186
//
// To use them, simply apply the "dot" program to this file.
// For example, to generate a PNG image:
//
// $ dot -Tpng -O simple-suffix-trees.dot
//
// Dot will generate a series of output files, automatically
// numbered.
//*****
// a.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]"]
}
//*****
// ab.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]",weight=1.0]
root -> leaf2 [label="[1,#]",weight=1.0]
}
//*****
// abc.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]",weight=1.0]
root -> leaf2 [label="[1,#]",weight=1.0]
root -> leaf3 [label="[2,#]",weight=1.0]
}
//*****
// abca_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abca",weight=1.0]
root -> leaf2 [label="bca",weight=1.0]
root -> leaf3 [label="ca",weight=1.0]
}
//*****
// abcab_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcab",weight=1.0]
root -> leaf2 [label="bcab",weight=1.0]
root -> leaf3 [label="cab",weight=1.0]
}
//*****
// abcabx_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcabx",weight=1.0]
root -> leaf2 [label="bcabx",weight=1.0]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_1.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5,color=blue]
int1 -> leaf1 [label="cabx",weight=3,color=blue]
int1 -> leaf4 [label="x",weight=3,color=blue]
root -> leaf2 [label="bcabx",weight=1.0]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_2.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5,color=blue]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3,color=blue]
int2 -> leaf5 [label="x",weight=3,color=blue]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_2b.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabx_3.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
root -> leaf6 [label="x",weight=5,color=blue]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabx_4.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
root -> leaf6 [label="x",weight=5]
int1 -> in2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_1.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
int1 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3,color=blue]
int3 -> leaf1 [label="abxabcd",weight=3,color=blue]
int3 -> leaf7 [label="d",weight=6,color=blue]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> leaf2 [label="cabxabcd",weight=3]
int2 -> leaf5 [label="xabcd",weight=3]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_2.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> leaf2 [label="cabxabcd",weight=3]
int2 -> leaf5 [label="xabcd",weight=3]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_3.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c",color=blue]
int4 -> leaf2 [label="abxabcd",weight=3,color=blue]
int4 -> leaf8 [label="d",weight=3,color=blue]
int2 -> leaf5 [label="xabcd"]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_4.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0,color=blue]
int5 -> leaf3 [label="abxabcd",weight=1.0,color=blue]
int5 -> leaf9 [label="d",weight=1.0,color=blue]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_5.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0]
int5 -> leaf3 [label="abxabcd",weight=1.0]
int5 -> leaf9 [label="d",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
int4 -> int5 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_6.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
leaf10 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0]
int5 -> leaf3 [label="abxabcd",weight=1.0]
int5 -> leaf9 [label="d",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
int4 -> int5 [label="",weight=.1,style=dotted]
root -> leaf10 [label="d",weight=5,color=blue]
}
//*****
// abcd_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcd",weight=1.0]
root -> leaf2 [label="bcd",weight=1.0]
root -> leaf3 [label="cd",weight=1.0]
}
//*****
// real_a.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="a"]
}
//*****
// real_ab.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="ab",weight=1.0]
root -> leaf2 [label="b",weight=1.0]
}
//*****
// real_abc.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abc",weight=1.0]
root -> leaf2 [label="bc",weight=1.0]
root -> leaf3 [label="c",weight=1.0]
}
//*****
// simple_suffix_trees.dot
// *****
//*****
// a.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]"]
}
//*****
// ab.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]",weight=1.0]
root -> leaf2 [label="[1,#]",weight=1.0]
}
//*****
// abc.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="[0,#]",weight=1.0]
root -> leaf2 [label="[1,#]",weight=1.0]
root -> leaf3 [label="[2,#]",weight=1.0]
}
//*****
// abca_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abca",weight=1.0]
root -> leaf2 [label="bca",weight=1.0]
root -> leaf3 [label="ca",weight=1.0]
}
//*****
// abcab_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcab",weight=1.0]
root -> leaf2 [label="bcab",weight=1.0]
root -> leaf3 [label="cab",weight=1.0]
}
//*****
// abcabx_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcabx",weight=1.0]
root -> leaf2 [label="bcabx",weight=1.0]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_1.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5,color=blue]
int1 -> leaf1 [label="cabx",weight=3,color=blue]
int1 -> leaf4 [label="x",weight=3,color=blue]
root -> leaf2 [label="bcabx",weight=1.0]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_2.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5,color=blue]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3,color=blue]
int2 -> leaf5 [label="x",weight=3,color=blue]
root -> leaf3 [label="cabx",weight=1.0]
}
//*****
// abcabx_2b.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabx_3.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
root -> leaf6 [label="x",weight=5,color=blue]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabx_4.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> leaf1 [label="cabx",weight=3]
int1 -> leaf4 [label="x",weight=3]
int2 -> leaf2 [label="cabx",weight=3]
int2 -> leaf5 [label="x",weight=3]
root -> leaf3 [label="cabx",weight=1.0]
root -> leaf6 [label="x",weight=5]
int1 -> in2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_1.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
int1 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3,color=blue]
int3 -> leaf1 [label="abxabcd",weight=3,color=blue]
int3 -> leaf7 [label="d",weight=6,color=blue]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> leaf2 [label="cabxabcd",weight=3]
int2 -> leaf5 [label="xabcd",weight=3]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_2.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> leaf2 [label="cabxabcd",weight=3]
int2 -> leaf5 [label="xabcd",weight=3]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=.01,style=dotted]
}
//*****
// abcabxcd_3.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c",color=blue]
int4 -> leaf2 [label="abxabcd",weight=3,color=blue]
int4 -> leaf8 [label="d",weight=3,color=blue]
int2 -> leaf5 [label="xabcd"]
root -> leaf3 [label="cabxabcd",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_4.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0,color=blue]
int5 -> leaf3 [label="abxabcd",weight=1.0,color=blue]
int5 -> leaf9 [label="d",weight=1.0,color=blue]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_5.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0]
int5 -> leaf3 [label="abxabcd",weight=1.0]
int5 -> leaf9 [label="d",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
int4 -> int5 [label="",weight=.1,style=dotted]
}
//*****
// abcabxcd_6.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=red,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
leaf4 [label="",shape=point]
leaf5 [label="",shape=point]
leaf6 [label="",shape=point]
leaf7 [label="",shape=point]
leaf8 [label="",shape=point]
leaf9 [label="",shape=point]
leaf10 [label="",shape=point]
int1 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
root -> int1 [label="ab",weight=0.5]
root -> int2 [label="b",weight=0.5]
int1 -> int3 [label="c",weight=3]
int3 -> leaf1 [label="abxabcd",weight=3]
int3 -> leaf7 [label="d",weight=6]
int1 -> leaf4 [label="xabcd",weight=3]
int2 -> int4 [label="c"]
int4 -> leaf2 [label="abxabcd",weight=3]
int4 -> leaf8 [label="d",weight=3]
int2 -> leaf5 [label="xabcd"]
root -> int5 [label="c",weight=1.0]
int5 -> leaf3 [label="abxabcd",weight=1.0]
int5 -> leaf9 [label="d",weight=1.0]
root -> leaf6 [label="xabcd",weight=5]
int1 -> int2 [label="",weight=1,style=dotted]
int3 -> int4 [label="",weight=.1,style=dotted]
int4 -> int5 [label="",weight=.1,style=dotted]
root -> leaf10 [label="d",weight=5,color=blue]
}
//*****
// abcd_.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abcd",weight=1.0]
root -> leaf2 [label="bcd",weight=1.0]
root -> leaf3 [label="cd",weight=1.0]
}
//*****
// real_a.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="a"]
}
//*****
// real_ab.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="ab",weight=1.0]
root -> leaf2 [label="b",weight=1.0]
}
//*****
// real_abc.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
root [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.1,height=.1];
leaf1 [label="",shape=point]
leaf2 [label="",shape=point]
leaf3 [label="",shape=point]
//leaf1 [label="",shape=box,width=.05,height=.05]
root -> leaf1 [label="abc",weight=1.0]
root -> leaf2 [label="bc",weight=1.0]
root -> leaf3 [label="c",weight=1.0]
}
//*****
// simple_suffix_trees.dot
// *****
//*****
// special.dot
// *****
digraph {
rankdir = LR;
edge [arrowsize=0.4,fontsize=10]
leaf1 [label="",shape=point]
none1 [label="",shape=point,width=0]
none2 [label="",shape=point,width=0]
int1 [label="",style=filled,fillcolor=red,shape=circle,width=.07,height=.07]
int2 [label="",style=filled,fillcolor=green,shape=circle,width=.07,height=.07]
int3 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
int4 [label="",style=filled,fillcolor=blue,shape=circle,width=.07,height=.07]
int5 [label="",style=filled,fillcolor=lightgrey,shape=circle,width=.07,height=.07]
none1 -> int1 [label="",style=dashed]
none2 -> int2 [label="",style=dashed]
int1 -> int3 [label="defg",weight=3]
int2 -> int4 [label="de",weight=3]
int4 -> int5 [label="fg",weight=3]
int4 -> leaf1 [label="hi",weight=3]
int1 -> int2 [label="",weight=.1,style=dotted,arrowsize=0.8]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment