Watershed

DFS

Depth-First Search — explores branches deeply before backtracking

BFS

Breadth-First Search — explores all neighbors before moving to next level

Dijkstra

Dijkstra's Algorithm — finds shortest paths from source to all nodes

BST

Binary Search Tree — shows insertion operations in a sorted tree

MST-Prim

Prim's MST — builds minimum spanning tree by adding minimum weight edges

QuickSort

Quick Sort — divide-and-conquer sorting with pivot partitioning