+ 3
can anyone explain how addlistorder works in linkedlist.? How nodes are arrange in order in a linkedlist?
2 Réponses
0
hi Ryn, first to learn linkedlist we have to know what is node?
Node is a combination of data and the address.
In a linked list the nodes are arranged in a manner that each node will have the data as well next node address in it.
So we can easily remove , and add nodes c
0
I have added the snippet for adding node to the list. if you want you can check in my codes.