Here is an adjacency list of a graph:
1(2,4,5)
2(1,3,4,5,6,7)
3(2,5,6,7)
4(1,2,5)
5(1,2,3,4,6,7)
6(2,3,5,7)
7(2,3,5,6)
How many direct graphs, can this graph generates?
If cycles are not allowed, how many direct graph can we form? (The cycle is if we start from a vertex follow the dirction of...