Whats the difference between a linked-list and a dictionary?
Sigiloso
A Linked list is a collection of elements or nodes where each node will reference the next/previous element/node and is sequential access. A dictionary is a map or table with a search key that will have a value associated with that key.