In graph theory, breadth-first search (BFS) is a graph search algorithm that begins at the root node and explores all the neighboring nodes. Then for each of those nearest nodes, it explores their unexplored neighbor nodes, and so on, until it finds the goal.

learn more… | top users | synonyms

0
votes
0answers
10 views

BFS, acyclic, biparitite

I've learned about BFS and a few applications are to check if a graph is acyclic or if a graph is bipartite. * For acyclic I think you can check this by looking that all the labels als finite (so ...
1
vote
1answer
54 views

Process on curve/path skeleton binary image

I am trying to develop a code that can process on path/curve of a skeleton of an image . I want to have a vector of points from the skeleton between two points . This code ends after adding some ...
-2
votes
2answers
99 views

BFS and DFS on Adjacency List [closed]

So I know the basics of Breadth First Search and Depth First Search on graphs but I can't seem to figure out how to perform both of them on a adjacency list. Each search starts at 0. 0 -> 5 -> 2 -> 1 ...
1
vote
1answer
119 views

Implementing BFS in Java

I am a beginner in Java, and I need some help. I am trying to implement Breadth First Search algorithm to solve a puzzle game (Unblock Me a game on Android). I am done with the GUI, but I am stuck ...
1
vote
1answer
87 views

depth-first-search/breadth-first-search easy implementation

List<Tree<T>> unvisited = node.getChildren(); DFS: while (!unvisited.isEmpty()) { Tree<T> node = unvisited.remove(0); //search node unvisited.addAll(0, ...
0
votes
1answer
50 views

Maze solving with breadth first search

Can someone please explain the concept of how I would solve a maze using breadth first search? I need to use breadth first search to find shortest path through a maze, but I am so confused. This is ...
0
votes
1answer
32 views

Simplify solver to account for any types

I created a generic puzzle solver that uses a Breadth First Search method. I have it working for 2 types of puzzles, one in which the config is just an array list and another which is an array list of ...
0
votes
0answers
49 views

Graph search on Google app engine with ndb (python). Efficiency problems

I have been trying to implement a simple graph search on google app engine. this is my first ever gae project and python project, and graph search! so learning by doing (it wrong, probably). I have ...
0
votes
1answer
54 views

Errors with Implementing Breadth First Search (C)

I have been working on a Binary Search Tree and several of its function implementations for a school assignment. I just wrote my Breadth First Search functions and I am getting a segmentation fault in ...
-1
votes
1answer
76 views

Performing DFS and BFS on a directed graph

Suppose we have a graph such as: If you wanted a path from 0 to 5, in what order will we visit the nodes if we perform DFS and BFS on this graph (assume the lowest element is always pushed first). ...
4
votes
0answers
105 views

Filling a “power grid” using a breadth-first fill algorithm; I'm stuck

EDIT: I think I may have to implement a BFS in the run() function? EDIT2: I have updated the code to what I have now. I'm not comfortable with it, but it seems to be adding asterisks to the power ...
2
votes
1answer
81 views

Breadth First Search in Javascript

function BFS_search(data, start, ende){ var queue = new Array(); var steps = 0; for(var x=0; x<data.Adjazenzen.length-1; x++){ //push start Element in Queue ...
0
votes
0answers
36 views

Find the first null value in a breadth-wide search of a binary tree. (Java)

I'm trying to write a binary heap implemented over a binary tree, but I'm having trouble finding a way to add a new node to the "bottom" of the heap, i.e. the first null space on the tree in a ...
0
votes
1answer
38 views

Adding an element to the first non-occupied leaf in a binary tree

Right now I'm trying to write a binary heap in Java implemented over a binary tree structure, and while I do have a very good grasp on how to "heapify" the tree after adding an element, the logic for ...
-2
votes
1answer
52 views

Eliminating vertices from a graph [closed]

From Skiena's Book, Design a linear-time algorithm to eliminate each vertex v of degree 2 from a graph by replacing edges (u,v) and (v,w) by an edge (u,w). We also seek to eliminate multiple copies ...
0
votes
1answer
54 views

Concern about Depth First Search [closed]

Prove that if G is an undirected connected graph, then each of its edges is either in the depth-first search tree or is a back edge. Now, from intuition and in class lectures by Steven Skiena, I know ...
1
vote
1answer
46 views

BFS - WordChain/Wordladder

I need some help with a problem. I want to find the longest shortest path between some word and some given endword. All the words have are of length 4. I have a graph where each node represents a word ...
-4
votes
1answer
263 views

BFS algorithm in mazes java

In input we have length and width of maze, and the maze that looks like A..# ##.# #B.# #### Where "#" - is wall, A- start point, B - end point. In output we should to see a length of shortest route ...
0
votes
0answers
34 views

Is it possible to change breadth first search termination condition in BGL?

I am new to BGL(boost graph library). I am learning the breadth_first_search interface and it looks handy. However, in my application, I need to cut the breadth_first_search when some other ...
0
votes
1answer
201 views

Breadth first search not working 100%

working on doing a bfs for an adjacency matrix which is buil as an array of linked lists. Here is my bfs method, receives the array of linked lists and starting location: public static int ...
0
votes
0answers
490 views

Breadth First Search on an Array of Linked Lists [edited / shortened with error]

I am studying how in a small world (undirected graph) how long range connections can shorten the path length between any given to nodes. Basically I have an array of linked lists. Each section in the ...
0
votes
0answers
25 views

Counting unvisited nodes at distance n for every node in graph

For each point in a large graph I am trying to create a list that contains the number of unvisited nodes at distance n from the starting node. An example output is: [1,3,6] which means that at ...
0
votes
1answer
58 views

Implementing a depth first seach: incompatible objects

I am trying implement a breath-first search, for an AI program that searches through cities of romania. however, I have had a lot of touble with this and the latest error is searches.java:153: ...
0
votes
1answer
291 views

Breadth First Search algorithm gets stuck in infinite loop

I am trying to implement a Breadth First Search algorithm for 8puzzle. I am somehow not able to get in the `is(RequiredState(see))` condition where my search terminates. My program gets stuck in an ...
0
votes
0answers
207 views

Python, recursive breadth first search

I am trying to find the shortest path on a grid(list of lists of tuples) I've gotten this so far: def planPath(self, x, y, goal, board): visited = [] path = [] def pathFinder(curr): ...
0
votes
1answer
47 views

Calculating shortest path with BFS in R

I'm working with R to make a breadth-first search of a network. Here is the code I have so far: shortestPath <- function(v1,v2) { q <- rep(0, 3931) head <- 1 head2 <- 0 tail ...
0
votes
0answers
68 views

Graph backtrack complexity

I'm trying to analyse the complexity of backtracking a graph in order to find the longest path. My algorithm consists of topological sort and then backtrack from each vertex in order to find the ...
0
votes
1answer
133 views

Finding simple path between two vertices in a tree (undirected simple graph)

Given two vertices (A and B) and a tree (G) (undirected simple graph) - Find the vertices in the simple path between A and B in G. The algorithm should run in O(V) complexity. for instance - find ...
-1
votes
1answer
34 views

Shortest path - let the root node point to itself

I am implementing a shortest path algorithm using a linked list. Once the algorithm finds its target I want to trace backwards through the list. Is there any reason I shouldn't make the root node ...
0
votes
1answer
55 views

Convert an expression tree back to string form using only depth first and/or breadth first traversal

I'm working on a genetic programming problem that involves an expression tree. The tree data structure I'm using provides only accessors in terms of depth first and breadth first traversal. What's an ...
1
vote
2answers
133 views

Breadth first search branching factor

The run time of BFS is O(b^d) b is the branching factor d is the depth(# of level) of the graph from starting node. I googled for awhile, but I still dont see anyone mention how they figure out this ...
0
votes
1answer
68 views

HashSet contains copy of object

I have an object of class Point with members x and y. I want to check if a Point object is in my 'visited' HashSet, but when I check, I create a new object with the current values of x and y. Even if ...
0
votes
2answers
143 views

BFS performance in searching shortest path

There is a graph with up to 10 000 nodes and each node can have up to 4 adjacent nodes. Graph is unweighted and undirected. Task is to find shortest path from node A to node B. The path length is ...
0
votes
1answer
135 views

BFS implementation to find connected components taking too long

This is in continuation to a question i asked here. Given the total number of nodes(employees) and the adjacency list(friendship amongst employees) I need to find all the connected components. Below ...
2
votes
1answer
560 views

Traverse a graph represented in an adjacency matrix

I am wanting to use the depth-first and breadth-first methods for traversing a graph. I have done this on a simple list of nodes before, but I have never tried it with an adjacency matrix and I ...
1
vote
3answers
87 views

Breadth first search with fixed stopping distance

I'm looking at a graph problem where I'm given a source node and need to find all other nodes up to a fixed distance away, where each edge between nodes has a uniform cost. So I've implemented a ...
0
votes
1answer
445 views

C++ Trouble with Understanding BFS to find Shortest Path

I have a simple graph and my assignment is to find the shortest path between two nodes. I've done my best to read through the BFS pseudocode and examples but it's just not clicking. My nodes are ...
3
votes
2answers
140 views

Sparse Graph Implementation & Performance in C++

I'm currently working on a directed graph data structure in C++ (no Boost GL for this project). The primary application will be identifying connected components and sinks. The graphs are expected to ...
1
vote
1answer
139 views

8 tile solver with repeated nodes - Python

i'm trying to solve the 8tile puzzle using techniques like BFS search, DFS, Greedy and A* using Manhattan distance as my heuristic solution. The problem is that while i can solve some good number of ...
2
votes
1answer
100 views

Breadth first search: Knight cover

I'm trying to follow the USACO training course on algorithms (http://ace.delos.com/usacogate) - and I am currently at a page that describes DFS, BFS etc. I do understand these concepts, but the sample ...
0
votes
2answers
332 views

Height of binary search tree iteratively

I was trying out an iterative method to find the height/depth of a binary search tree. Basically, I tried using Breadth First Search to calculate the depth, by using a Queue to store the tree nodes ...
1
vote
1answer
89 views

How to frame dynamic sql statements using Tree in C#?

I'm trying to implement a C# module which will dynamically frame sql statements,The strategy which im thinking involves the Tree Data Structure,The values should be stored in a tree like structure ...
2
votes
2answers
331 views

Shortest path: DFS, BFS or both?

I know BFS alone can find the shortest path in an unweighted graph but I also read on a couple of sites where people were claiming that either BFS or DFS could do this. I just wanted to confirm that ...
1
vote
2answers
105 views

find first n edges,breadth first search

Problem: To find first n nearest edges(2000) given an edge object in a directed cyclic graph. Data Structure: Link class and Node class. The link class has a from and to node, which points to ...
2
votes
1answer
304 views

How do you find the shortest path quickly in a breadth first search?

I'm using breadth first search to find a location in a graph, and I'm pretty sure my algorithm works correctly, but I'm having troubling finding the shortest path to the result when I'm done. ...
1
vote
0answers
227 views

Using Breadth First Search to Find All Possible Paths in an Undirected Graph

$grph = array( array(1,2), array(0,2,3), array(0,1,4), array(1,5,4), array(2,3,5), array(3,4)); //The $grph[0] is all the ...
1
vote
1answer
269 views

What's the purpose of BFS/DFS?

okay, I've learned their algorithms, but what are they used for? To find a certain node in a graph or to find a shortest path or to find a cycle in a graph? Both of them just visit all the nodes and ...
0
votes
1answer
112 views

Why BFS signs nodes with 2 colors, and DFS with 3 colors?

It has suddenly occured into my mind. Why do we use only 2 colors in BFS graphs traveral and 3 are needed for DFS ? for instance: from wikipedia: BFS: procedure BFS(G,v): 2 create a queue Q ...
0
votes
1answer
252 views

Breadth First Search for searching all paths between any two nodes in a cyclic Graph

I am trying to use BFS for getting all paths between two nodes in a cyclic Graph. I found BFS doesnt't keep track its previous node, so need to add some other collection to achieve the same. ...
0
votes
1answer
194 views

How can I find the shortest cycle in an undirected bipartite graph using BFS ?

How can I find the shortest cycle in a simple (not directed ) bipartite graph using Breadth First Search ?

1 2 3 4 5 6