Tagged Questions

7
votes
2answers
130 views

Random-first search?

The two most common ways to traverse a graph are breadth-first search and depth-first search. Both of these search algorithms follow a common template: Create a worklist W, seeded with the start ...
6
votes
2answers
946 views

Finding the longest cycle in a directed graph using DFS

I need to find the longest cycle in a directed graph using DFS. I once saw this Wikipedia article describing the way of doing this, and I think it approached the problem something like marking the ...
6
votes
10answers
2k views

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 honestly never seen a situation that calls for a breadth-first search, although ...
5
votes
3answers
177 views

Fingerprint tree generation

There is group of people [let's say 1874 of them], all representing different companies [lets say 236 of them] in the world. My task is to best identify what company each person works for. The trick ...
5
votes
4answers
3k views

Why DFS and not BFS for finding cycle in graphs

Predominantly DFS is used to find a cycle in graphs and not BFS. Any reasons? Both can find if a node has already been visited while traversing the tree/graph.
4
votes
1answer
128 views

Peg solitaire – checking pegs vs. checking holes in a depth-first search

I am trying to solve Peg Solitaire with a depth-first search algorithm – it should be possible to solve the game since "modern computers can easily examine all game positions in a reasonable time". ...
4
votes
2answers
671 views

algorithm to enumerate all possible paths

Consider the following graph: I'm trying to find a way to enumerate all possible paths from a source node to a target node. For example, from A to E, we have the following possible paths: A B C D ...
4
votes
2answers
2k views

Checking for odd cycles in an undirected graph

I'm back with another similar question. I am currently working on a Java program that will check if a graph is 2-colorable, i.e. if it contains no odd cycles (cycles of odd number length). The entire ...
3
votes
2answers
183 views

Why is Depth-First Search said to suffer from infinite loops?

I have read about DFS and BFS many times but I have this doubt lingering my mind since long. In a lot of articles it is mentioned that DFS can get stuck in infinite loops. As far as I know, this ...
3
votes
3answers
298 views

.NET Performance: Deep Recursion vs Queue

I'm writing a component that needs to walk large object graphs, sometimes 20-30 levels deep. What is the most performant way of walking the graph? A. Enqueueing "steps" so as to avoid deep recursion ...
3
votes
4answers
1k views

breadth first or depth first search

I know how this algorithm works, but cant decide when to use which algorithm ? Are there some guidelines, where one better perform than other or any considerations ? Thanks very much.
3
votes
7answers
643 views

Best and easiest algorithm to search for a vertex on a Graph?

After implementing most of the common and needed functions for my Graph implementation, I realized that a couple of functions (remove vertex, search vertex and get vertex) don't have the "best" ...
3
votes
4answers
864 views

extra space for recursive depth-first search to store paths

I am using depth-first search to identify paths in a directed weighted graph, while revisiting nodes that belong to a cycle, and setting cutoff conditions based on total distance traveled, or stops ...
2
votes
1answer
474 views

Depth-first-search maze generation algorithm with blocks instead of walls

I am trying to implement the depth first search algorithm into my game. I have been studying this web page: http://www.mazeworks.com/mazegen/mazetut/index.htm , only to find that I wouldn't be able to ...
2
votes
1answer
304 views

depth-first algorithm in python does not work

I have some project which I decide to do in Python. In brief: I have list of lists. Each of them also have lists, sometimes one-element, sometimes more. It looks like this: rules=[ ...
2
votes
2answers
107 views

What does it mean to expand a node?

I'm trying to understand the algorithm for a Depth-Limited-Search on wikipedia, and I'm trying to figure out what exactly it means to expand a node. I attempted to search for an answer but all I got ...
2
votes
1answer
156 views

Performing depth-first algorithm from a specific vertex

I am trying to find a way to perform the depth-first algorithm from a specific vertex by using the boost graph library. The depth-first algorithm provided by Boost library evaluates the graph ...
2
votes
5answers
2k views

When is it it practical to use DFS vs BFS?

I understand the differences between DFS and BFS, but I'm interested to know when it's more practical to use one over the other? Could anyone give any examples of how DFS would trump BFS and vice ...
2
votes
2answers
188 views

Pruning: When to Stop?

When does pruning stop being efficient in a depth-first search? I've been working on an efficient method to solve the N-Queens problem and I'm looking at pruning for the first time. I've implemented ...
2
votes
1answer
493 views

Finding biggest area of adjacent numbers in a matrix

This is NOT a homework. I'm a beginner in programming, and also this is my first post here - please bear with me. I was not able to find similar questions posted here. In a beginner's book, I ...
1
vote
1answer
68 views

Understanding Wikipedia code for a generic depth-first tree search?

I was brushing up on different tree traversal methods and ended up reading the following Wikipedia article. As expected, there are three methods of depth first traversal for a binary tree: ...
1
vote
2answers
86 views

Should I use breadth first or depth first for searching a filesystem for a predetermined number of errors?

I have a large filesystem that I need to traverse for errors. Each file knows whether or not it contains an error, so I simply need to travel to each node and check whether there is an error there. ...
1
vote
2answers
72 views

Why does this solution say the DFS have to run in reverse?

Wouldn't it keep finding t if we start at s? Give a linear-time algorithm that takes as input a directed acyclic graph G = (V,E) and two vertices s and t, and returns the number of paths from s to ...
1
vote
2answers
343 views

Iterative deepening vs depth first search

I keep reading about iterative deepening, but I don't understand how it differs from depth first search. So depth first search keeps going deeper and deeper I understand that. In iterative deepening ...
1
vote
2answers
227 views

Enumerating all paths in a tree

I've tried and tried; searched and searched, but could not really find an algorithm to solve my problem. I want to enumerate all paths in a tree, (not just simple paths) those which start and end with ...
1
vote
2answers
335 views

Input/output of breadth-first vs. depth-first search

My question isn't really about the mechanism of either search type. I feel it's a lot more mundane than that - I don't understand the input and output of either. More specifically, in CLRS, BFS takes ...
1
vote
2answers
897 views

Algorithm for counting connected components of a graph in Python

I try to write a script that counts connected components of a graph and I can't get the right solution. I have a simple graph with 6 nodes (vertexes), nodes 1 and 2 are connected, and nodes 3 and 4 ...
1
vote
1answer
119 views

General DFS on River Crossers

I'm trying to write a DFS to solve multiple river crossing problems (Fox Goat Cabbage, Jealous Husbands, Mercenaries and Cannibals, etc.). I've written the puzzle classes, but I'm having trouble ...
1
vote
2answers
610 views

Depth First Search Basics

I'm trying to improve my current algorithm for the 8 Queens problem, and this is the first time I'm really dealing with algorithm design/algorithms. I want to implement a depth-first search combined ...
1
vote
2answers
1k views

Finding All Ways in FlowChart diagram?

I made an FlowChart diagram editor on Java. It It drows flowscharts and connect them each other and creates me two array. One of it shows connection nodes and lines , other shows connnecting elements ...
0
votes
2answers
338 views

Difference between DFS and BFS

I am reading about DFS in Introduction to algorithms by cormen. Following is text snippet. Unlike BFS, whose predecessor subgraph forms a tree, the predecessor subgrpah produced by DFS may be ...
0
votes
1answer
86 views

Trying to fix 3D mesh normals

I have triangle collection that define mesh surface of my 3D shape, I would like to fix normal of each triangle to point outshape. I was trying the following (pseudo): 1. define that first triangle ...
0
votes
3answers
83 views

How to grok this badly written article on DFS?

As someone who has not english as moms language (Russia) I read this article at Wikipedia: http://en.wikibooks.org/wiki/Artificial_Intelligence/Search/Heuristic_search/Depth-first_search and I try to ...
0
votes
3answers
264 views

How to track the depth in this object graph depth-first search algorithm?

I have this code which iterates over a tree, doing a depth-first search. Every element is tackled exactly once. Very good. -(void)iterateOverTree:(TreeNode *)node { NSMutableArray * elements = ...
0
votes
3answers
658 views

depth-first search algorithm

the depth-first algorithm implemented in the boost library visits each vertex just one time. Is there any work around to deactivate this option. I want that the vertexes can be visited whenever ...
0
votes
4answers
3k views

Complexity of finding all simple paths using depth first search?

Thanks to everyone replying with ideas and alternate solutions. More efficient ways of solving problems are always welcome, as well as reminders to question my assumptions. That said, I'd like you to ...
-1
votes
2answers
173 views

sort predicate to have nodes sorted in Depth First Search order

I have a list of nodes, where each of the nodes belong to one or multiple trees. (they do not necessarily share a common ancestor) I want to sort the nodes in the same order I would find them when ...