Simply a list is a sequence of data, and linked list is a sequence of data linked with each other. linked list is a sequence of elements in which every element is linked to its next element.
In terms of programming

I found real life example of linked list is a Train, here each coach is connected to its previous and next coach (Except first and last).
I am looking real example more then the definition. What is real of example for linked list? What is a real life situation where a single linked list can be used in programming ?
In terms of programming

I found real life example of linked list is a Train, here each coach is connected to its previous and next coach (Except first and last).
I am looking real example more then the definition. What is real of example for linked list? What is a real life situation where a single linked list can be used in programming ?