reading-notes

Trees Cheat Sheet

Tree Data Structures Cheat Sheet

Common Terminology

Tree Traversals

Binary Trees Vs K-ary Trees

Adding a Node

In a binary tree, nodes can be added wherever space allows. One strategy is to fill all “child” spots from the top down using breadth first traversal.

Time and Space Complexity (Big O)

Binary Search Trees (BST)