DEV Community

Discussion on: What's a Linked List, Anyway? [Part 1]

Collapse
 
mortoray profile image
edA‑qa mort‑ora‑y

Looking good.

A small note about " When we organize our data into hashes (sometimes called dictionaries)" This is technically incorret. The logical data structure is the "Dictionary", or "Map", and a hash map is one way to implement it. Dictionaries are also frequently implemented with a binary tree, and perhaps a radix trie for optimized stores.