Programming interview concepts are back! You can find the rest of those posts under the how does it work? tag. Before we talk about how a binary tree works, we should probably talk about what it is. A binary tree is just a tree data structure where each node has at most two children. Thank you wikipedia :) There’s nothing preventing you from making a tree where each node has more than two children,.. Read More