Some example of single linked list.
- Undo button of any application like Microsoft Word, Paint, etc: A linked list of states.
- GPS Navigation: A linked list of map data. Travelling from origin to destination is example of traversing through all nodes. Rerouting by a GPS is an example of Add and Remove operations of map data.
Some example of double linked list.
- Browser's Next and Previous Button: a linked list of URLs
- Microsoft Image Viewer's Next and Previous Button: a linked list of images
- Undo and Redo button of Photoshop, a linked list of states.