Created by aaryan chaturvedi
almost 6 years ago
|
||
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; }
Want to create your own Notes for free with GoConqr? Learn more.