#19
BFS
Se consideră un graf neorientat cu n
vârfuri și m
muchii și un vârf cunoscut X
. Să se afişeze vârfurile vizitate în urma parcurgerii în lățime a grafului pornind din vârful X
.
Problema | BFS | Operații I/O |
BFS.in /BFS.out
|
---|---|---|---|
Limita timp | 1 secunde | Limita memorie |
Total: 128 MB
/
Stivă 8 MB
|
Id soluție | #54773830 | Utilizator | |
Fișier | bfs.cpp | Dimensiune | 1.64 KB |
Data încărcării | 08 Decembrie 2024, 13:28 | Scor / rezultat | Eroare de compilare |
bfs.cpp:7:13: error: 'node' does not name a type node *nxt; ^ bfs.cpp: In function 'void bfs(int)': bfs.cpp:46:9: error: 'node' was not declared in this scope node *p = a[quuue[cs]]; ^ bfs.cpp:46:15: error: 'p' was not declared in this scope node *p = a[quuue[cs]]; ^ bfs.cpp: In function 'void addnode(int, int)': bfs.cpp:66:18: error: 'struct nod' has no member named 'nxt' a[n1] -> nxt = p; ^ bfs.cpp:67:14: error: 'struct nod' has no member named 'nxt' p -> nxt = NULL; ^ bfs.cpp:73:16: error: 'struct nod' has no member named 'nxt' while(p -> nxt != NULL && ok) ^ bfs.cpp:75:17: error: 'struct nod' has no member named 'nxt' if(p -> nxt -> info == n2) ^ bfs.cpp:77:17: error: 'struct nod' has no member named 'nxt' if(p -> nxt -> info > n2) ^ bfs.cpp:80:20: error: 'struct nod' has no member named 'nxt' p = p->nxt; ^ bfs.cpp:84:10: error: 'struct nod' has no member named 'nxt' q -> nxt = p -> nxt; ^ bfs.cpp:84:21: error: 'struct nod' has no member named 'nxt' q -> nxt = p -> nxt; ^ bfs.cpp:85:10: error: 'struct nod' has no member named 'nxt' p -> nxt = q; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema BFS face parte din prima categorie. Soluția propusă de tine va fi evaluată astfel:
Suma punctajelor acordate pe testele utilizate pentru verificare este 100. Astfel, soluția ta poate obține cel mult 100 de puncte, caz în care se poate considera corectă.