Trees
A Common-Sense Guide to Data Structures and Algorithms, Second Edition — Pragmatic Programmers (144 / 226)
👈 Chapter 15 Speeding Up All the Things with Binary Search Trees | TOC | Binary Search Trees 👉
You were introduced to node-based data structures in the previous chapter with linked lists. In a classic linked list, each node contains a link that connects the node to a single other node. A tree is also a node-based data structure, but within a tree, each node can have links to multiple nodes.