0 votes
in Artificial Intelligence by (13.0k points)
What is a depth-first search algorithm?

1 Answer

0 votes
by (13.1k points)
Depth-first search (DFS) is based on LIFO (last-in, first-out). A recursion is implemented with LIFO stack data structure. Thus, the nodes are in a different order than in BFS. The path is stored in each iteration from root to leaf nodes in a linear fashion with space requirement.

Related questions

...