#875
Stiva
Să se scrie un program care gestionează o stivă de numere întregi. Inițial stiva este vidă. Programul va citi de la tastatură o listă de operații, care pot fi:
push X
– adaugă valoarea întreagă X
pe stivă;pop
– elimină elementul din vârful stivei;top
– afișează elementul din vârful stivei.Programul va realiza asupra stivei operațiile citite, în ordine. Afișările se fac pe ecran, câte o valoare pe linie.
Problema | Stiva | Operații I/O | tastatură/ecran |
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #51851042 | Utilizator | |
Fișier | stiva.cpp | Dimensiune | 1.22 KB |
Data încărcării | 29 August 2024, 15:12 | Scor / rezultat | Eroare de compilare |
stiva.cpp:9:10: error: field 'next' has incomplete type node next; ^ stiva.cpp: In function 'void inserareLaSfarsit(int)': stiva.cpp:17:12: error: 'struct node' has no member named 'next' d->next=NULL; ^ stiva.cpp:23:20: error: 'struct node' has no member named 'next' while (it->next!=NULL) ^ stiva.cpp:24:20: error: 'struct node' has no member named 'next' it=it->next; ^ stiva.cpp:27:12: error: 'struct node' has no member named 'next' d->next=NULL; ^ stiva.cpp:28:13: error: 'struct node' has no member named 'next' it->next=d; ^ stiva.cpp: In function 'void stergereLaSfarsit()': stiva.cpp:33:15: error: 'struct node' has no member named 'next' if (head->next==NULL) ^ stiva.cpp:38:21: error: 'struct node' has no member named 'next' while ((it->next)->next!=NULL) ^ stiva.cpp:39:20: error: 'struct node' has no member named 'next' it=it->next; ^ stiva.cpp:40:13: error: 'struct node' has no member named 'next' it->next=NULL; ^ stiva.cpp: In function 'void afisLaFinal()': stiva.cpp:48:20: error: 'struct node' has no member named 'next' while (it->next!=NULL) ^ stiva.cpp:49:20: error: 'struct node' has no member named 'next' it=it->next; ^ stiva.cpp:50:9: error: 'fout' was not declared in this scope fout << it->data << '\n'; ^ stiva.cpp: In function 'int main()': stiva.cpp:58:9: error: 'fin' was not declared in this scope fin >> f; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema Stiva face parte din prima categorie. 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ă.