Trees & Graphs
Explore hierarchical and network data structures.
Overview
Trees and graphs are non-linear data structures that represent hierarchical or network relationships between objects.
Trees
A tree is a hierarchical data structure consisting of nodes connected by edges. Each tree has a root node, and every node has zero or more child nodes.
Types of Trees
- Binary Tree: Each node has at most two children
- Binary Search Tree (BST): A binary tree where left children are less than the parent, and right children are greater
- AVL Tree: A self-balancing BST
- Red-Black Tree: A self-balancing BST with additional properties
- Trie: A tree-like data structure for storing strings
Graphs
A graph is a collection of nodes connected by edges. Unlike trees, graphs can have cycles.
Types of Graphs
- Directed Graph: Edges have a direction
- Undirected Graph: Edges have no direction
- Weighted Graph: Edges have weights or costs
- Connected Graph: There is a path between every pair of vertices
- Disconnected Graph: There are vertices that cannot be reached from others
Key Algorithms
- Tree Traversals: Inorder, Preorder, Postorder
- Graph Traversals: Breadth-First Search (BFS), Depth-First Search (DFS)
- Shortest Path: Dijkstra's Algorithm, Bellman-Ford Algorithm
- Minimum Spanning Tree: Prim's Algorithm, Kruskal's Algorithm
Common Problems
- Maximum Depth of Binary Tree
- Validate Binary Search Tree
- Binary Tree Level Order Traversal
- Number of Islands
- Course Schedule (Graph Cycle Detection)
Related Resources
Practice Problems
Maximum Depth of Binary Tree
EasyGiven the root of a binary tree, return its maximum depth.
Solve problem
Number of Islands
MediumGiven an m x n 2D binary grid grid which represents a map of 1s (land) and 0s (water), return the number of islands.
Solve problem
Study Tips
- Start with easier problems and gradually increase difficulty
- Focus on understanding the problem before coding
- Review solutions even after solving to learn optimal approaches