A linked list is a set of nodes where each node has two fields ‘data’ and ‘link’. The data field is used to store actual piece of information and link field is used to store address of next node.
What is a linked list?
September 14, 2023 in Data Structure