#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 | #52426070 | Utilizator | |
Fișier | fstergeduplicate.cpp | Dimensiune | 295 B |
Data încărcării | 30 Septembrie 2024, 08:26 | Scor / rezultat | Eroare de compilare |
fstergeduplicate.cpp: In function 'void FStergeDuplicate(Nod*&)': fstergeduplicate.cpp:17:12: error: 'struct Nod' has no member named 'urm' if (L->urm != NULL) { ^ fstergeduplicate.cpp:18:26: error: 'struct Nod' has no member named 'urm' for (Nod* f = L->urm; f->urm != NULL; f = f->urm) { ^ fstergeduplicate.cpp:18:34: error: 'struct Nod' has no member named 'urm' for (Nod* f = L->urm; f->urm != NULL; f = f->urm) { ^ fstergeduplicate.cpp:18:54: error: 'struct Nod' has no member named 'urm' for (Nod* f = L->urm; f->urm != NULL; f = f->urm) { ^ fstergeduplicate.cpp:19:20: error: 'struct Nod' has no member named 'info' if (f->info == f->urm->info) { ^ fstergeduplicate.cpp:19:31: error: 'struct Nod' has no member named 'urm' if (f->info == f->urm->info) { ^ fstergeduplicate.cpp:20:29: error: 'struct Nod' has no member named 'urm' Nod* t = f->urm; ^ fstergeduplicate.cpp:21:20: error: 'struct Nod' has no member named 'urm' f->urm = t->urm; ^ fstergeduplicate.cpp:21:29: error: 'struct Nod' has no member named 'urm' f->urm = t->urm; ^
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ă.