0 votes
in Artificial Intelligence by
What is a depth-first search algorithm?

1 Answer

0 votes
by
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

+1 vote
asked Nov 1, 2021 in Artificial Intelligence by DavidAnderson
0 votes
asked Aug 10, 2023 in DBMS by DavidAnderson
...