Skip to content

Latest commit

 

History

History
2 lines (2 loc) · 445 Bytes

depth_first_search.md

File metadata and controls

2 lines (2 loc) · 445 Bytes

Depth First Search

Depth first searching is an algorithm that searches a tree or graph from the top to the bottom. The left child of each node is evaluated first, followed by all of its children and then the right children are evaluated. The right most node in the structure is evaluated last. Usually, a stack is used to implement this form of searching.