Tagged Questions

0
votes
0answers
5 views

Manage isVisited method with double values

I am working on implementing a recursive depth first search, my issue is maintaining visited elements in my ArrayList. I have double values but the way using a boolean[], I have to type cast it to …
2
votes
8answers
207 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 …
0
votes
5answers
532 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?
0
votes
2answers
148 views

depth-first-search

I implemented a depth-first-search in c# based on information I found on the net and old java books and I used the Node and NodeList and Graph from the msdn site. How can one modify the DFS or BFS to …
1
vote
1answer
117 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
197 views

Iterative-deepening depth first search using limited memory

This is a follow-up to Find first null in binary tree with limited memory. Wikipedia says that iterative-deepening depth first search will find the shortest path. I would like an implementation that …
2
votes
4answers
199 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 …