以下是在欧拉图中寻找欧拉路径的给定算法。但是,据说有一个小于10个顶点的反例。给定的欧拉图是无向的,每个顶点都有均匀度,它将在相同的顶点开始和结束。
1. Perform a DFS traversal of G and number the vertices in DFS-preorder.
2. Re-initialize all vertices and edges of G as unused.
3. Produce a cycle as follows:
Start from the vertex with preorder number 1 (computed in step 1), and
repeatedly go to the vertex with highest preorder number possible along
an unused edge.
Stop when all edges incident to the current vertex are used.
过去3天我一直在尝试从6到9的顶点,我真的无法想出一个例子。任何帮助表示赞赏!谢谢。
答案 0 :(得分:0)
我将此作为回复发布,因为我不知道如何在评论中正确显示图表,如您所见。
如果我错了,请纠正我,但不会因为图表
而被打动 A---B
\ /
C
/ \
D---E
使用DFS- C A B D E
现在C
是节点号1,我们将从它开始,并且必须再次访问它以进入其他周期。
如果我对您的代码的理解是正确的,那么具有2个或更多个具有公共节点的周期的类似图表将会出错。
PS-任何人都可以告诉你如何在评论中开始换行
答案 1 :(得分:0)