๐คdepth-first search
๐ง under construction
Last updated
๐ง under construction
Last updated
data structure โฉ graph โฉ DFS
Depth-First Search (DFS)
visits a graph node and explores its child nodes or branches before proceeding to the next node. (going deep first before going wide)
a recursive algorithm that leverages the stack.