#3527
FStergeDuplicate
C++
Să se scrie o funcție care să elimine nodurile care conțin duplicate dintr-o listă care are valorile ordonate crescător.
Folclorul informatic
Problema | FStergeDuplicate | Operații I/O |
fstergeduplicate.in /fstergeduplicate.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 4 MB
/
Stivă 2 MB
|
Id soluție | #25895805 | Utilizator | |
Fișier | fstergeduplicate.cpp | Dimensiune | 1.40 KB |
Data încărcării | 18 Noiembrie 2020, 14:09 | Scor / rezultat | Eroare de compilare |
fstergeduplicate.cpp:20:8: error: redefinition of 'struct Nod' struct Nod ^ fstergeduplicate.cpp:4:8: error: previous definition of 'struct Nod' struct Nod ^ fstergeduplicate.cpp:26:6: error: redefinition of 'Nod* L' Nod *L; ///L = NULL ^ fstergeduplicate.cpp:14:6: error: 'Nod* L' previously declared here Nod *L; ^ fstergeduplicate.cpp: In function 'void adaugare(Nod*&, int)': fstergeduplicate.cpp:30:18: error: no matching function for call to 'Nod::Nod()' Nod *q = new Nod; ^ fstergeduplicate.cpp:30:18: note: candidates are: fstergeduplicate.cpp:8:5: note: Nod::Nod(int) Nod(int x) ^ fstergeduplicate.cpp:8:5: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp:4:8: note: constexpr Nod::Nod(const Nod&) struct Nod ^ fstergeduplicate.cpp:4:8: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp:4:8: note: constexpr Nod::Nod(Nod&&) fstergeduplicate.cpp:4:8: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp: In function 'void adaugareInainte(Nod*&, int)': fstergeduplicate.cpp:47:18: error: no matching function for call to 'Nod::Nod()' Nod *q = new Nod; ^ fstergeduplicate.cpp:47:18: note: candidates are: fstergeduplicate.cpp:8:5: note: Nod::Nod(int) Nod(int x) ^ fstergeduplicate.cpp:8:5: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp:4:8: note: constexpr Nod::Nod(const Nod&) struct Nod ^ fstergeduplicate.cpp:4:8: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp:4:8: note: constexpr Nod::Nod(Nod&&) fstergeduplicate.cpp:4:8: note: candidate expects 1 argument, 0 provided fstergeduplicate.cpp: In function 'int main()': fstergeduplicate.cpp:103:5: error: redefinition of 'int main()' int main() ^ fstergeduplicate.cpp:89:5: error: 'int main()' previously defined here int main() ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema FStergeDuplicate 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ă.