1
我用下面的僞代碼從維基百科page實現了圖形反覆深入深度優先搜索實現迭代深入深度優先搜索
function IDDFS(root)
for depth from 0 to ∞
found ← DLS(root, depth)
if found ≠ null
return found
function DLS(node, depth)
if depth = 0 and node is a goal
return node
if depth > 0
foreach child of node
found ← DLS(child, depth−1)
if found ≠ null
return found
return null
這裏是我的代碼:
bool DLS(GrapheMat* graphe, Node* source, NomSom but, int limit) {
bool found = false;
printf("%s\n", (char*)source->etat);
if (strcmp((char*)source->etat, (char*)but) == 0) {
return true;
}
if (limit > 0) {
List* listSon = nodeSon(graphe, source);
while(!listEpmty(listSon)) {
Node* son = (Node*)popList(listSon);
if (DLS(graphe, son, but, limit-1)) {
return true;
}
}
}
return false;
}
bool IDDLS (GrapheMat* graphe, NomSom goal, int limit) {
bool found = false;
node* source = createNode(graphe, graphe->nomS[0]);
for (int i = 0; i <= limit; i++) {
printf("/nLimit : %d\n", i);
DLS(graphe, source, goal, i);
}
return false;
}
我我使用下面的圖表來測試:
它從以下文件內置:
A B C D E F G H I J ;
A : B (140) C (118) D (75) ;
B : A (140) E (99) F (151) G (80);
C : A (118) ;
D : A (75) F (71) ;
E : B (99) H (211) ;
F : D (71) B (151) ;
G : B (80) I (146) J (97) ;
H : E (211) J (101) ;
I : G (146) J (138) ;
J : G (97) H (101) I (138) ;
調用IDDLS(graphe, "J", 4)
輸出以下:
/nLimit : 0
A
這就是全部。
調用DLS(graphe, "A", "J", 4)
輸出以下(換行刪除):
ABABAEFGCADAFEBAEFGHEJ
從我的理解中,DLS功能實際上應該遵循以下路徑:
ABEGHCDEFGHIJ
@ikegami我剛纔編輯與輸出後,孩子們都按字母順序排列 – Meryem
@ikegami對不起,我再次編輯後,希望這是足夠的信息 – Meryem
重新「*我的輸出是: /nLimit:0 A 這就是所有*「,除非進程被信號殺死,否則這是不可能的。那是怎麼回事?如果是這樣,什麼信號? – ikegami