Creado por aaryan chaturvedi
hace casi 6 años
|
||
a linked list is made up of nodes . linked list is a linear data structure nodes consists of two parts - 1.data 2.link to next node to declare nodes we use strucures struct node { int data; node * link; -in c - struct node* link; }
¿Quieres crear tus propios Apuntes gratis con GoConqr? Más información.