For example this digraph, start from s1, we can realize depth first traverse by different sequences such as { s1 t1 s2 t3 s3 t4 s1 t5 s3, s1 t2 s2} or {s1 t5 s3 t4 s1 t2 s2 t3 s3, s1 t1 s2}. I find that  in each group the start nodes is realated with the nodes whose outdegree is larger than its indegree, the end nodes in each group is realated with the nodes whose indegree is larger than its outdegree.

my question is:Given a digraph and start from the same node for depth first traverse,considering the solutions of each group, can we conclude the following properties ?

Property i: The same number of sequences in each group.

Property ii: The same kind of start nodes and the same number of each kind of start nodes for sequences in each group.

Property iii: The same kind of end nodes and the same number of each kind of end nodes for sequences in each group.

Similar questions and discussions