#4164
FAdaugaInainte
C++
Să se scrie o funcție C++ care inserează înainte de fiecare nod cu informația impară dublul său.
Problema | FAdaugaInainte | Operații I/O |
fadaugainainte.in /fadaugainainte.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 0.2 MB
/
Stivă 0.2 MB
|
Id soluție | #53350491 | Utilizator | |
Fișier | fadaugainainte.cpp | Dimensiune | 405 B |
Data încărcării | 25 Octombrie 2024, 13:51 | Scor / rezultat | Eroare de compilare |
fadaugainainte.cpp: In function 'void FAdaugaInainte(Nod*&)': fadaugainainte.cpp:18:6: error: no match for 'operator=' (operand types are 'Nod' and 'Nod*') p=new Nod; ^ fadaugainainte.cpp:18:6: note: candidates are: fadaugainainte.cpp:4:8: note: Nod& Nod::operator=(const Nod&) struct Nod ^ fadaugainainte.cpp:4:8: note: no known conversion for argument 1 from 'Nod*' to 'const Nod&' fadaugainainte.cpp:4:8: note: Nod& Nod::operator=(Nod&&) fadaugainainte.cpp:4:8: note: no known conversion for argument 1 from 'Nod*' to 'Nod&&' fadaugainainte.cpp:19:6: error: base operand of '->' has non-pointer type 'Nod' p->info=2*head->info; ^ fadaugainainte.cpp:20:6: error: base operand of '->' has non-pointer type 'Nod' p->leg=head; ^ fadaugainainte.cpp:21:9: error: cannot convert 'Nod' to 'Nod*' in assignment head=p; ^ fadaugainainte.cpp:23:6: error: no match for 'operator=' (operand types are 'Nod' and 'Nod*') q=head; ^ fadaugainainte.cpp:23:6: note: candidates are: fadaugainainte.cpp:4:8: note: Nod& Nod::operator=(const Nod&) struct Nod ^ fadaugainainte.cpp:4:8: note: no known conversion for argument 1 from 'Nod*' to 'const Nod&' fadaugainainte.cpp:4:8: note: Nod& Nod::operator=(Nod&&) fadaugainainte.cpp:4:8: note: no known conversion for argument 1 from 'Nod*' to 'Nod&&' fadaugainainte.cpp:24:12: error: base operand of '->' has non-pointer type 'Nod' while(q->leg!=NULL){ ^ fadaugainainte.cpp:26:13: error: base operand of '->' has non-pointer type 'Nod' if(q->leg->info%2==1){ ^ fadaugainainte.cpp:28:22: error: base operand of '->' has non-pointer type 'Nod' g->info=2*q->leg->info; ^ fadaugainainte.cpp:29:24: error: base operand of '->' has non-pointer type 'Nod' g -> leg = q->leg; ^ fadaugainainte.cpp:30:13: error: base operand of '->' has non-pointer type 'Nod' q->leg = g; ^ fadaugainainte.cpp:34:12: error: base operand of '->' has non-pointer type 'Nod' q=q->leg; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema FAdaugaInainte face parte din a doua categorie. Pentru aceste probleme se folosește un program suport, furnizat de propunătorul problemei. 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ă.