diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-03-30 14:30:12 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-03-30 14:30:12 +0400 |
| commit | d56cbb5c36c61fcb3a898363c5b9c2a7062b092e (patch) | |
| tree | cfe33ab83d41bd783f20a21d6d50840d265e3b72 | |
| parent | cf93edd8dda4f46bce052d7bb2f7738e767276fb (diff) | |
Добавил пробел в 5 задаче
| -rw-r--r-- | graphs/task5.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphs/task5.cpp b/graphs/task5.cpp index 7fc9652..59900b8 100644 --- a/graphs/task5.cpp +++ b/graphs/task5.cpp @@ -48,7 +48,7 @@ void bfs( int a, (*paths)[node] = y; q->push(node); - if(node == b) return; + if (node == b) return; } } } |