#4459
F_lsi_Add
C++
Să se scrie o funcție C++ care va căuta, în caz că există, un nod care memorează valoarea val
. Dacă există un asemenea nod, atunci va insera înainte de acest nod un nou nod ce va memora pe x
, și de asemenea va insera după acest nod un nou nod ce va memora pe y
.
Problema | F_lsi_Add | Operații I/O |
f_lsi_add.in /f_lsi_add.out
|
---|---|---|---|
Limita timp | 0.1 secunde | Limita memorie |
Total: 64 MB
/
Stivă 8 MB
|
Id soluție | #53996319 | Utilizator | |
Fișier | f_lsi_add.cpp | Dimensiune | 630 B |
Data încărcării | 17 Noiembrie 2024, 13:01 | Scor / rezultat | Eroare de compilare |
f_lsi_add.cpp: In function 'void LsiAdd(Nod*&, int, int, int)': f_lsi_add.cpp:55:19: error: conversion from 'Nod*' to non-scalar type 'Nod' requested Nod q=new Nod; ^ f_lsi_add.cpp:56:10: error: base operand of '->' has non-pointer type 'Nod' q->info=x; ^ f_lsi_add.cpp:57:10: error: base operand of '->' has non-pointer type 'Nod' q->leg=head; ^ f_lsi_add.cpp:58:13: error: cannot convert 'Nod' to 'Nod*' in assignment head=q; ^ f_lsi_add.cpp:59:19: error: conversion from 'Nod*' to non-scalar type 'Nod' requested Nod n=new Nod; ^ f_lsi_add.cpp:60:10: error: base operand of '->' has non-pointer type 'Nod' n->info=y; ^ f_lsi_add.cpp:61:10: error: base operand of '->' has non-pointer type 'Nod' n->leg=head->leg->leg; ^ f_lsi_add.cpp:62:23: error: cannot convert 'Nod' to 'Nod*' in assignment head->leg->leg=n; ^ f_lsi_add.cpp:64:11: error: conversion from 'Nod*' to non-scalar type 'Nod' requested Nod p=head; ^ f_lsi_add.cpp:65:13: error: base operand of '->' has non-pointer type 'Nod' while (p->leg!=NULL){ ^ f_lsi_add.cpp:66:14: error: base operand of '->' has non-pointer type 'Nod' if (p->leg->info==val){ ^ f_lsi_add.cpp:67:23: error: conversion from 'Nod*' to non-scalar type 'Nod' requested Nod n=new Nod; ^ f_lsi_add.cpp:68:14: error: base operand of '->' has non-pointer type 'Nod' n->info=x; ^ f_lsi_add.cpp:69:14: error: base operand of '->' has non-pointer type 'Nod' n->leg=p->leg; ^ f_lsi_add.cpp:69:21: error: base operand of '->' has non-pointer type 'Nod' n->leg=p->leg; ^ f_lsi_add.cpp:70:14: error: base operand of '->' has non-pointer type 'Nod' p->leg=n; ^ f_lsi_add.cpp:72:23: error: conversion from 'Nod*' to non-scalar type 'Nod' requested Nod g=new Nod; ^ f_lsi_add.cpp:73:14: error: base operand of '->' has non-pointer type 'Nod' g->info=y; ^ f_lsi_add.cpp:74:14: error: base operand of '->' has non-pointer type 'Nod' g->leg=p->leg; ^ f_lsi_add.cpp:74:21: error: base operand of '->' has non-pointer type 'Nod' g->leg=p->leg; ^ f_lsi_add.cpp:75:14: error: base operand of '->' has non-pointer type 'Nod' p->leg=g; ^ f_lsi_add.cpp:78:12: error: base operand of '->' has non-pointer type 'Nod' p=p->leg; ^
www.pbinfo.ro permite evaluarea a două tipuri de probleme:
Problema F_lsi_Add 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ă.