Tagged Questions

5
votes
3answers
172 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
2answers
132 views

What's the best way to perform DFS on a very large tree?

Here's the situation: The application world consists of hundreds of thousands of states. Given a state, I can work out a set of 3 or 4 other reachable states. A simple recursion can build a tree ...
4
votes
4answers
452 views

Find first null in binary tree with limited memory

I have a binary tree where each node can have a value. I want to find the node in the tree that has value null and is closest to the root. If there are two nodes with the same distance from the ...
1
vote
4answers
69 views

Test depth-first tree

I made a Java program to browse a tree with depth-first. The program is correct, but the choice of the son of a node is random. for example in this tree : sometimes, the result is: A-B-E-C-F-D ...
1
vote
2answers
214 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
1answer
209 views

Find parent node of a tree to create the shortest possible tree height

I have an undirected graph represented as an adjacency matrix of Euclidean weights. I'm using this to represent the minimum spanning tree for a larger complete graph. What I want to find is the ...
1
vote
2answers
593 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 ...
0
votes
1answer
32 views

Repeating nodes on a search tree? (AI)

I am doing the following question: Consider the 3-puzzle problem, where the board is a 2X2 matrix. There are three tiles numbered 1,2, and 3, and there is one blank tile. There are four operators ...
0
votes
2answers
177 views

DFS stackoverflow error

I'm doing an 8 piece puzzle game in java, and the assignment commands that i do a DFS to find the solution, starting at a random state. i have a Node class, each Node object knows what state it is in ...
0
votes
3answers
250 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
2answers
784 views

Depth First Search in Binary Trees/Graphs in Java

I have been trying for a while to get this Graph disguised as a Binary Tree working. Currently I'm using a function that passes in the root node and the ID of the node I am looking for. Only problem ...
0
votes
5answers
4k views

Depth first search using java

I want to implement DFS (Depth first search) and BFS using java. Does java have a built in tree data structure that I can use readly? Or any other thing that I can use?
-1
votes
2answers
163 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 ...