Search code examples
When to mark visited in iterative DFS? at push or at pop...


pythonalgorithmsearchgraph-theorydepth-first-search

Read More
In a DAG, how to find vertices where paths converge?...


algorithmgraph-theorydepth-first-searchbreadth-first-searchdirected-acyclic-graphs

Read More
Find size of maximum connected region in matrix...


ralgorithmmatrixdepth-first-search

Read More
Python: Implementing Depth-First Search for Freecell Solitaire...


pythonpython-3.xrecursiondepth-first-search

Read More
How to detect cycles in a directed graph using the iterative version of DFS?...


algorithmgraph-algorithmdepth-first-search

Read More
How to extend a spanning tree into a bridgeless subgraph in O(V+E) time?...


algorithmgraph-theorydepth-first-searchspanning-treetarjans-algorithm

Read More
DFS in binary tree and graph...


c#binary-treedepth-first-searchpostorder

Read More
Get list of all sub-keys from a dictionary...


pythondictionaryrecursionnesteddepth-first-search

Read More
Decode a run-length encoded string...


javascriptdepth-first-search

Read More
Dfs Vs Bfs confusion...


algorithmgraphbreadth-first-searchdepth-first-search

Read More
Maintaining context of current node in a iterative DFS vs a recursive DFS...


c++recursionstackdepth-first-search

Read More
Shortest path through a labyrinth: not always getting correct result...


c++recursiongraphdepth-first-search

Read More
How to solve boat movements using Graph algorithm?...


pythonmatrixchartsdepth-first-search

Read More
Efficient connected components from a 2D array...


haskellmatrixfunctional-programmingnested-listsdepth-first-search

Read More
Detect if the element im currently in is the youngest son/grandson/grandgrand son of an element...


javascriptdepth-first-search

Read More
Speedup depth first search in a grid...


pythondepth-first-search

Read More
Why is my DFS maze generation algorithm not working?...


c++depth-first-searchmaze

Read More
Predecessors from scipy depth_first_order...


pythonscipytreenetworkxdepth-first-search

Read More
DFS-compatible coordinate-free neighbors in Haskell...


haskellmatrixsearchdepth-first-searchbreadth-first-search

Read More
Blocks-World Problem in Prolog keeps oscillating between the same two states...


prologartificial-intelligencedepth-first-searchplanning

Read More
Detecting cycles in a graph using DFS: 2 different approaches and what's the difference...


graphcycledepth-first-searchadjacency-list

Read More
String representation of a tree (nodes) data structure with paths from left to right...


algorithmtreestring-formattingdepth-first-searchbreadth-first-search

Read More
How can I calculate the level of a node in a perfect binary tree from its depth-first order index?...


algorithmbinary-treedepth-first-search

Read More
Yield depth on a depth-first non-recursive tree walker?...


pythontreedepth-first-searchbreadth-first-search

Read More
discovery time & finishing time of Depth first search...


algorithmdepth-first-search

Read More
Can this generic DFS implementation in Haskell be used to detect cycles in an adjacency list?...


haskelldepth-first-search

Read More
Depth First Search v.s. Greedy Best First Search...


algorithmgraph-theorydepth-first-search

Read More
Difference between passing in string vs. array parameters to recursive function...


pythonarraysstringbinary-treedepth-first-search

Read More
Is finding the largest cycle on a directed graph with 133 Nodes and 737 Edges Computable?...


time-complexitynetworkxdepth-first-searchlongest-path

Read More
Max() function on node ; python DFS...


pythondepth-first-search

Read More
BackNext