#4683
FLsiMakeList
C++
Să se scrie o funcție ce va crea o listă simplu înlănțuită care să memoreze în nodurile sale cele n
numere întregi din vector, în ordinea în care se află în a
. Pointerul head
va memora în final adresa primului nod din listă.
Problema | FLsiMakeList | Operații I/O |
flsimakelist.in /flsimakelist.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53787107 | Utilizator | |
Fișier | flsimakelist.cpp | Dimensiune | 284 B |
Data încărcării | 11 Noiembrie 2024, 19:10 | Scor / rezultat | Eroare de compilare |
flsimakelist.cpp: In function 'void MakeList(nod*&, int*, int)': flsimakelist.cpp:22:6: error: no match for 'operator=' (operand types are 'nod' and 'nod*') p=q; ^ flsimakelist.cpp:22:6: note: candidates are: flsimakelist.cpp:4:8: note: nod& nod::operator=(const nod&) struct nod ^ flsimakelist.cpp:4:8: note: no known conversion for argument 1 from 'nod*' to 'const nod&' flsimakelist.cpp:4:8: note: nod& nod::operator=(nod&&) flsimakelist.cpp:4:8: note: no known conversion for argument 1 from 'nod*' to 'nod&&' flsimakelist.cpp:28:10: error: base operand of '->' has non-pointer type 'nod' p->urm=q; ^ flsimakelist.cpp:29:10: error: no match for 'operator=' (operand types are 'nod' and 'nod*') p=q; ^ flsimakelist.cpp:29:10: note: candidates are: flsimakelist.cpp:4:8: note: nod& nod::operator=(const nod&) struct nod ^ flsimakelist.cpp:4:8: note: no known conversion for argument 1 from 'nod*' to 'const nod&' flsimakelist.cpp:4:8: note: nod& nod::operator=(nod&&) flsimakelist.cpp:4:8: note: no known conversion for argument 1 from 'nod*' to 'nod&&'
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema FLsiMakeList 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ă.