Tagged Questions

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
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
1answer
545 views

Implementing depth-first graph traversal

I have conflicting information about depth first traversal and could use some help in understanding how to build a program. Given a certain graph, I want to print a sequence of vertices. The user will ...
3
votes
3answers
182 views

Why are you guaranteed to find your result if it is in the graph with BFS but not with DFS?

I've read somewhere that DFS is not gaurenteed to find a solution while BFS is.. why? I don't really get how this is true.. could someone demonstrate a case for me that proves this?
3
votes
4answers
800 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
70 views

Knight's tour depth-first search infinite loop

I'm trying to solve the knight's tour problem using a depth-first search algorithm. The algorithm seems te be looping whenever it has two choices that both result in a dead end. I understand that this ...
2
votes
3answers
137 views

StackOverflow error: How can I avoid it or turn this DFS into an iterative one?

I'm using Depth First Search for maze generation. The adjacency matrix of M*N vertices is traversed in a random order using DFS, I'm only interested in generating a random route. The thing works ...
2
votes
1answer
327 views

Recursive Searching in Java

So I've been writing a program for the game boggle. I create a little board for the user to use, but the problem is I don't know how to check if that word is on the board recursively. I want to be ...
2
votes
1answer
477 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
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
86 views

Depth First Search Bug

I'm working on a programming assignment (in java) to solve a fifteen-puzzle sort of thing. The first part is to use depth first search to find a solution. I want it to be able to solve an arbitrarily ...
1
vote
2answers
101 views

Getting StackOverflow Error

I'm trying to write a program that takes a Sudoku puzzle and solves it. However, I'm running into a StackOverflow error at this line: Move nMove = new Move(current.nextMove(current, sboard).i, ...
1
vote
1answer
152 views

Java: stack pop() not working

I'm implementing a DFS iterative search through a matrix via a stack to generate a maze later. The thing is getting stuck pushing the first element without ever popping it: void DFS_I(int i, int j){ ...
1
vote
3answers
68 views

Java: Randomizing the Order of Method Recursive Calls

For DFS maze generation in Java I wanna randomize the order in which the recursive calls of a DFS are made: for (int rows=i; rows<M; rows++) for (int cols=j; cols<N; cols++){ ...
1
vote
3answers
147 views

Why do I get StackOverFlowError when trying to DFS this graph?

I am trying to write an algorithm that determines whether a graph is connected or not. I think my code is almost correct, although I keep getting StackOverFlowError. I personally think because there's ...
1
vote
1answer
116 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
847 views

Creating a Maze using Java

Im using Java to create a maze of specified "rows" and "columns" over each other to look like a grid. I plan to use a depth-first recursive method to "open the doors" between the rooms (the box ...
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
3answers
230 views

java: Non-Recursive Depth First Search using ArrayDeque or LinkedList or LinkedBlockingDeque?

public void traverse(Node root){ ArrayDeque<Node> queue = new ArrayDeque<Node>(); queue.add(root); while(!queue.isEmpty()){ Node currentNode = queue.pollFirst(); ...
0
votes
1answer
122 views

Odd ordering in iterative DFS vs recursive DFS

I'm solving this dfs/bfs problem. I wrote both an iterative version and a recursive version of DFS. The order of node visiting is different and I don't get why. iterative DFS: static void DFS ...
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
1answer
897 views

Implementation of Adjacency list of a graph

I am trying to implement the adjacency list for a non-weighted graph and a few questions/concerns. i realize I need a linked list to store the edges and an array to store the vertices.Currently I ...
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
1answer
501 views

java - Depth First Search - Perform DFS on a tree

Im trying to perform DFS on a Minimum Spanning Tree which contains 26 nodes. Nodes are named 'A' to 'Z' and the tree is undirected. I have an empty function called DFS here that I am trying to write, ...
0
votes
1answer
528 views

revisiting nodes during DFS and controlling infinite cycles

I am implementing DFS on a weighted directed graph in the following way: public class DFSonWeightedDirectedGraph { private static final String START = "A"; private static final String ...
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?