Content deleted Content added
-wikicode |
|||
Line 21:
'''function''' breadthFirstSearch (Start, Goal) {
'''while''' notEmpty(Queue)) {
Node :=
'''if''' Node = Goal {
return Node
Line 30:
'''if''' notVisited(Child) {
setVisited(Child)
}
}
|