#672
Postordine
Se dă un arbore binar care conține valori numere naturale. Să se afișeze valorile din arbore în urma parcurgerii în postordine.
Problema | Postordine | Operații I/O |
postordine.in /postordine.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #51074794 | Utilizator | |
Fișier | postordine.cpp | Dimensiune | 660 B |
Data încărcării | 22 Mai 2024, 13:55 | Scor / rezultat | Eroare de compilare |
postordine.cpp:4:12: warning: missing terminating " character [enabled by default] ifstream f("postordine.in); ^ postordine.cpp:4:1: error: missing terminating " character ifstream f("postordine.in); ^ postordine.cpp:5:11: error: expected ',' or '...' before '(' token ofstream g("postordine.out"); ^ postordine.cpp:5:29: error: expected ')' before ';' token ofstream g("postordine.out"); ^ postordine.cpp: In function 'void citire()': postordine.cpp:11:10: error: invalid operands of types 'std::ifstream(std::ofstream) {aka std::basic_ifstream<char>(std::basic_ofstream<char>)}' and 'int' to binary 'operator>>' f >> n; ^ postordine.cpp:14:17: error: invalid operands of types 'std::ifstream(std::ofstream) {aka std::basic_ifstream<char>(std::basic_ofstream<char>)}' and 'int' to binary 'operator>>' f >> a[i] >> s[i] >> d[i]; ^ postordine.cpp: In function 'void preordine(int)': postordine.cpp:24:9: error: 'g' was not declared in this scope g << a[rad] << " "; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Postordine 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ă.