#3801
LsiInterclasare
C++
Să se scrie o funcție care interclasează nodurile a două liste.
Folclorul informatic
Problema | LsiInterclasare | Operații I/O |
lsiinterclasare.in /lsiinterclasare.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 16 MB
/
Stivă 8 MB
|
Id soluție | #43110272 | Utilizator | |
Fișier | lsiinterclasare.cpp | Dimensiune | 628 B |
Data încărcării | 31 Martie 2023, 18:32 | Scor / rezultat | 100 puncte |
lsiinterclasare.cpp: In function 'void LsiInterclasare(Nod*, Nod*, Nod*&)': lsiinterclasare.cpp:53:54: warning: unused variable 'k' [-Wunused-variable] void LsiInterclasare(Nod *h1, Nod *h2, Nod *&h){ int k = 0, choose = 0; bool ok = 0; Nod *last = NULL; while(h1 != NULL && h2 != NULL){ if(h1 -> info <= h2 -> info){ if(last == NULL) h = h1, last = h1; else{ last -> leg = h1; last = last -> leg; } h1 = h1 -> leg; }else{ if(last == NULL) h = h2, last = h2; else{ last -> leg = h2; last = last -> leg; } h2 = h2 -> leg; } } while(h1 != NULL){ last -> leg = h1; last = last -> leg; h1 = h1 -> leg; } while(h2 != NULL){ last -> leg = h2; last = last -> leg; h2 = h2 -> leg; }} ^ lsiinterclasare.cpp:53:61: warning: unused variable 'choose' [-Wunused-variable] void LsiInterclasare(Nod *h1, Nod *h2, Nod *&h){ int k = 0, choose = 0; bool ok = 0; Nod *last = NULL; while(h1 != NULL && h2 != NULL){ if(h1 -> info <= h2 -> info){ if(last == NULL) h = h1, last = h1; else{ last -> leg = h1; last = last -> leg; } h1 = h1 -> leg; }else{ if(last == NULL) h = h2, last = h2; else{ last -> leg = h2; last = last -> leg; } h2 = h2 -> leg; } } while(h1 != NULL){ last -> leg = h1; last = last -> leg; h1 = h1 -> leg; } while(h2 != NULL){ last -> leg = h2; last = last -> leg; h2 = h2 -> leg; }} ^ lsiinterclasare.cpp:53:78: warning: unused variable 'ok' [-Wunused-variable] void LsiInterclasare(Nod *h1, Nod *h2, Nod *&h){ int k = 0, choose = 0; bool ok = 0; Nod *last = NULL; while(h1 != NULL && h2 != NULL){ if(h1 -> info <= h2 -> info){ if(last == NULL) h = h1, last = h1; else{ last -> leg = h1; last = last -> leg; } h1 = h1 -> leg; }else{ if(last == NULL) h = h2, last = h2; else{ last -> leg = h2; last = last -> leg; } h2 = h2 -> leg; } } while(h1 != NULL){ last -> leg = h1; last = last -> leg; h1 = h1 -> leg; } while(h2 != NULL){ last -> leg = h2; last = last -> leg; h2 = h2 -> leg; }} ^
Test | Timp | Mesaj evaluare | Scor posibil | Scor obținut | ||
---|---|---|---|---|---|---|
0 | 0 secunde | OK. | 10 | 10 | ||
1 | 0 secunde | OK. | 10 | 10 | ||
2 | 0 secunde | OK. | 10 | 10 | ||
3 | 0 secunde | OK. | 10 | 10 | ||
4 | 0 secunde | OK. | 10 | 10 | ||
5 | 0 secunde | OK. | 10 | 10 | ||
6 | 0 secunde | OK. | 10 | 10 | ||
7 | 0 secunde | OK. | 10 | 10 | ||
8 | 0 secunde | OK. | 10 | 10 | ||
9 | 0 secunde | OK. | 10 | 10 | ||
Punctaj total | 100 |
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema LsiInterclasare 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ă.