depth-first search

Depth-first search is a graph traversal algorithm that explores as far as possible along each branch before backtracking. It systematically explores the depth of a graph by prioritizing visiting adjacent nodes rather than searching breadth-wise.

Requires login.