✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Zu welchem Algorithmus gehört folgender Pseudocode:
ALGO(node, goal) { if (node == goal) return true; else { stack := expand (node); while (stack is not empty) { node' := pop(stack); return ALGO(node', goal); } return false; } }