Top "Depth-first-search" questions

Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or graph.

Explain BFS and DFS in terms of backtracking

Wikipedia about Depth First Search: Depth-first search (DFS) is an algorithm for traversing or searching a tree, tree structure, or …

graph backtracking depth-first-search breadth-first-search
Shortest path: DFS, BFS or both?

I know BFS alone can find the shortest path in an unweighted graph but I also read on a couple …

algorithm graph depth-first-search breadth-first-search
Non-recursive Depth-First Search (DFS) Using a Stack

Ok this is my first post on Stack Overflow I have been reading for a little while and really admire …

algorithm graph graph-algorithm depth-first-search
How to implement a breadth first search to a certain depth?

I understand and can easily implement BFS. My question is, how can we make this BFS limited to a certain …

java algorithm search depth-first-search breadth-first-search
What is breadth-first search useful for?

Usually when I've had to walk a graph, I've always used depth-first search because of the lower space complexity. I've …

algorithm search graph-theory breadth-first-search depth-first-search
Is the runtime of BFS and DFS on a binary tree O(N)?

I realize that runtime of BFS and DFS on a generic graph is O(n+m), where n is number …

algorithm binary-tree time-complexity depth-first-search breadth-first-search
Edge classification in a DFS

According to the book (Intro to Algorithm), in dfs, edges are classified as 4 kinds: Tree Edge, if in edge (u,…

graph-theory depth-first-search edges
depth-first graph search that returns path to goal

I've been trying this all week and cannot, for the life of me, figure it out. I know that I …

python search recursion graph depth-first-search
Depth First Search and Breadth First Search Understanding

I'm making Tetris as a fun side project (not homework) and would like to implement AI so the computer can …

java algorithm depth-first-search breadth-first-search