Another programmer was mentioning that they haven't found a use case for using a linked list data structure in any professional software in his career. I couldn't think of any good examples off the top of my head. He is mostly a C# and Java developer
Can anyone give some examples where this was the correct data structure to solve a particular real world problem?
Related: What is a practical, real world example of the Linked List?
Linked Lists offer several advantages over comparable data structures such as static or dynamically expanding arrays.
Any place where these advantages would be significantly valuable to a program (and the disadvantages of a LinkedList were negligible) would be a place to use a LinkedList.