All About C++

Get Pure Concepts of C++

Wednesday 10 February 2016

what is link list in data structure C++

link list in data structure:
                                           
                                  Link list is a way to store data following a specific method.in link list we link elements with each other.
Every element is saved in a specific node and every node contains two parts,one is data part and other is
address part.