#757
BiMax
Se consideră un arbore binar în care nodurile memorează numere naturale nenule. Să se determine valorile maxime din subarborii stâng și drept ai rădăcinii.
Problema | BiMax | Operații I/O |
bimax.in /bimax.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #23245719 | Utilizator | |
Fișier | bimax.cpp | Dimensiune | 793 B |
Data încărcării | 04 Iunie 2020, 11:24 | Scor / rezultat | Eroare de compilare |
bimax.cpp:6:5: error: field 'st' has incomplete type nod st,dr;} *rad; ^ bimax.cpp:6:8: error: field 'dr' has incomplete type nod st,dr;} *rad; ^ bimax.cpp: In function 'nod* creare()': bimax.cpp:17:12: error: 'struct nod' has no member named 'st' p->st=creare(); ^ bimax.cpp:18:12: error: 'struct nod' has no member named 'dr' p->dr=creare(); ^ bimax.cpp: In function 'void preordine1(nod*)': bimax.cpp:25:11: error: 'struct nod' has no member named 'st' if(r->st!=NULL) preordine1(r->st); ^ bimax.cpp:25:35: error: 'struct nod' has no member named 'st' if(r->st!=NULL) preordine1(r->st); ^ bimax.cpp:26:11: error: 'struct nod' has no member named 'dr' if(r->dr!=NULL) preordine1(r->dr); ^ bimax.cpp:26:35: error: 'struct nod' has no member named 'dr' if(r->dr!=NULL) preordine1(r->dr); ^ bimax.cpp: In function 'void preordine2(nod*)': bimax.cpp:32:11: error: 'struct nod' has no member named 'st' if(r->st!=NULL) preordine2(r->st); ^ bimax.cpp:32:35: error: 'struct nod' has no member named 'st' if(r->st!=NULL) preordine2(r->st); ^ bimax.cpp:33:11: error: 'struct nod' has no member named 'dr' if(r->dr!=NULL) preordine2(r->dr); ^ bimax.cpp:33:35: error: 'struct nod' has no member named 'dr' if(r->dr!=NULL) preordine2(r->dr); ^ bimax.cpp: In function 'int main()': bimax.cpp:39:21: error: 'struct nod' has no member named 'st' preordine1(rad->st); ^ bimax.cpp:40:21: error: 'struct nod' has no member named 'dr' preordine2(rad->dr); ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema BiMax 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ă.