Data structure is one of the most important in computer science . There are so many data structure are there
if you talk about most important from all the important one is Linked List.
LinkedList is a data structure where there are two block of node,one is data block and second one is for address block , the address block store the address of next node.
If you have any problem you can leave us a comment ,
This program is contributed by Rajendra Tighage
Thanks for Reading
Noeik
if you talk about most important from all the important one is Linked List.
LinkedList is a data structure where there are two block of node,one is data block and second one is for address block , the address block store the address of next node.
Like arrays, Linked List is a linear data structure. Unlike arrays, linked list elements are not stored at contiguous location; the elements are linked using pointers.(source geekforgeeks )
source : wikipedia
Now let see if we want to write our own linked list using generic.
If you have any problem you can leave us a comment ,
This program is contributed by Rajendra Tighage
Thanks for Reading
Noeik
0 comments:
Post a Comment