diff --git a/Algoritmer/Grafer/breadth_first_search.md b/Algoritmer/Grafer/breadth_first_search.md index 250f8f7..bb6ac02 100644 --- a/Algoritmer/Grafer/breadth_first_search.md +++ b/Algoritmer/Grafer/breadth_first_search.md @@ -22,7 +22,7 @@ ```pseudo BFS(G,s): -1 for hver node element in G.V: +1 for hver node element in G.V - {s}: 2 u.color = white 3 u.d = ∞ 4 u.𝜋 = NIL