Skip to content

Instantly share code, notes, and snippets.

@repomaa
Created July 2, 2012 20:30
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save repomaa/3035514 to your computer and use it in GitHub Desktop.
Save repomaa/3035514 to your computer and use it in GitHub Desktop.
New graph
digraph G {
B [shape="circle"];
A [shape="circle"];
D [shape="circle"];
C [shape="circle"];
E [shape="circle"];
S [shape="circle"];
root=S;
S -> A [label="1"];
S -> B [label="2"];
S -> C [label="3"];
S -> D [label="4"];
B -> E [label="1"];
E -> A [label="2"];
A -> D [label="2"];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment