notes/school/di-ma/20181113_1-topsort.dot

15 lines
250 B
Plaintext
Raw Normal View History

2018-11-13 20:51:02 +01:00
digraph {
a [ label="A", xlabel="2" ];
b [ label="B", xlabel="1" ];
c [ label="C", xlabel="3" ];
d [ label="D", xlabel="4" ];
e [ label="E", xlabel="5" ];
a -> d;
a -> c;
b -> a;
b -> c;
c -> e;
d -> e;
}