#1476
FSortare
C++
Să se scrie o funcție C++
care sortează crescător elementele unei liste simplu înlănţuite.
Problema | FSortare | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #43334376 | Utilizator | |
Fișier | fsortare.cpp | Dimensiune | 234 B |
Data încărcării | 20 Aprilie 2023, 10:42 | Scor / rezultat | Eroare de compilare |
fsortare.cpp: In function 'void sortareCrescator(nod*&)': fsortare.cpp:28:15: error: conversion from 'nod*' to non-scalar type 'nod' requested for(nod p=prim;p->urm;p=p->urm) ^ fsortare.cpp:28:21: error: base operand of '->' has non-pointer type 'nod' for(nod p=prim;p->urm;p=p->urm) ^ fsortare.cpp:28:30: error: base operand of '->' has non-pointer type 'nod' for(nod p=prim;p->urm;p=p->urm) ^ fsortare.cpp:29:16: error: base operand of '->' has non-pointer type 'nod' for(nod q=p->urm;q;q=q->urm) ^ fsortare.cpp:29:22: error: could not convert 'q' from 'nod' to 'bool' for(nod q=p->urm;q;q=q->urm) ^ fsortare.cpp:29:27: error: base operand of '->' has non-pointer type 'nod' for(nod q=p->urm;q;q=q->urm) ^ fsortare.cpp:30:13: error: base operand of '->' has non-pointer type 'nod' if(p->info>q->info) ^ fsortare.cpp:30:21: error: base operand of '->' has non-pointer type 'nod' if(p->info>q->info) ^ fsortare.cpp:31:19: error: base operand of '->' has non-pointer type 'nod' {aux=p->info; ^ fsortare.cpp:32:14: error: base operand of '->' has non-pointer type 'nod' p->info=q->info; ^ fsortare.cpp:32:22: error: base operand of '->' has non-pointer type 'nod' p->info=q->info; ^ fsortare.cpp:33:14: error: base operand of '->' has non-pointer type 'nod' q->info=aux;} ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema FSortare 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ă.