notes/school/di-ma/uebung/08/08_2_2.dot

18 lines
221 B
Plaintext
Raw Normal View History

2018-12-11 14:38:10 +01:00
digraph {
node [ shape="circle" ];
{
rank=same;
1;2;
}
{
rank=same;
3;5;
}
1 -> 5 -> 4 -> 3 -> 2 -> 1;
1 -> 3;
2 -> 4;
3 -> 5;
4 -> 1;
5 -> 2;
}