#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 | #54485899 | Utilizator | |
Fișier | flsimakelist.cpp | Dimensiune | 276 B |
Data încărcării | 29 Noiembrie 2024, 19:37 | Scor / rezultat | Eroare de compilare |
flsimakelist.cpp: In function 'void MakeList(nod*&, int*, int)': flsimakelist.cpp:19:10: error: no match for 'operator=' (operand types are 'nod' and 'nod*') nou = new nod; ^ flsimakelist.cpp:19: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&&' flsimakelist.cpp:20:13: error: base operand of '->' has non-pointer type 'nod' nou -> info = a[i]; ^ flsimakelist.cpp:21:13: error: base operand of '->' has non-pointer type 'nod' nou -> urm = NULL; ^ flsimakelist.cpp:22:22: error: cannot convert 'nod' to 'nod*' in assignment head2 -> urm = nou; ^ flsimakelist.cpp:23:15: error: cannot convert 'nod' to 'nod*' in assignment head2 = nou; ^
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ă.