473,699 Members | 2,801 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Breadth First Search in java

12 New Member
hi
plz do not ignore me I really neeed ur help
I am working on a progarmme to implement First Search and Breadth Search
I did the first search algorithm but I need help with implementing the Breadth Search algorithm plz help me
I have the methods but i want to know what to change inorder to implemnet Breadth first search


import java.util.*;

public class DFS{

Vertex startv;
Vertex endv;
Vector<AlgNode> q = new Vector<AlgNode> (10,10);
AlgNode start;

public DFS(Vertex startv, Vertex endv){

this.startv = startv;
this.endv = endv;
start = new AlgNode(startv) ;
q.add(start);
search();
}

public void search(){

AlgNode currentAN=null;

if((startv==nul l)||(endv==null )){

return;
}

boolean found = false;

search:
while(q.size()> 0){

currentAN = q.get(0);
q.remove(0);

Vertex v = currentAN.getVe rtex();

if(v.equals(end v)){
found = true;
break search;
}else{

AlgNode[] cs= currentAN.expan d();
for(int i = cs.length-1; i>=0; i--){

q.insertElement At(cs[i], 0);
}

}


}

if (found == true){

System.out.prin tln("Path Successfully Found");

Vertex[] as = currentAN.getAn cestors();

for(int i =0; i<as.length; i++){

System.out.prin tln(as[i].getNodeName()) ;
}
System.out.prin tln(endv.getNod eName());

}
else System.out.prin tln("No Possible Path");


}

}
Feb 20 '07 #1
3 14181
r035198x
13,262 MVP
hi
plz do not ignore me I really neeed ur help
I am working on a progarmme to implement First Search and Breadth Search
I did the first search algorithm but I need help with implementing the Breadth Search algorithm plz help me
I have the methods but i want to know what to change inorder to implemnet Breadth first search


import java.util.*;

public class DFS{

Vertex startv;
Vertex endv;
Vector<AlgNode> q = new Vector<AlgNode> (10,10);
AlgNode start;

public DFS(Vertex startv, Vertex endv){

this.startv = startv;
this.endv = endv;
start = new AlgNode(startv) ;
q.add(start);
search();
}

public void search(){

AlgNode currentAN=null;

if((startv==nul l)||(endv==null )){

return;
}

boolean found = false;

search:
while(q.size()> 0){

currentAN = q.get(0);
q.remove(0);

Vertex v = currentAN.getVe rtex();

if(v.equals(end v)){
found = true;
break search;
}else{

AlgNode[] cs= currentAN.expan d();
for(int i = cs.length-1; i>=0; i--){

q.insertElement At(cs[i], 0);
}

}


}

if (found == true){

System.out.prin tln("Path Successfully Found");

Vertex[] as = currentAN.getAn cestors();

for(int i =0; i<as.length; i++){

System.out.prin tln(as[i].getNodeName()) ;
}
System.out.prin tln(endv.getNod eName());

}
else System.out.prin tln("No Possible Path");


}

}
1.)When posting code please use code tags
2.)Do you know the algorithm for BFS?
3.)It is not very good to use labels for flow control.
Feb 20 '07 #2
alaa123
12 New Member
Hello
YES i KNOW THE ALGORITHM BUT NOT SURE HOW TO IMPLEMENT IT
i have the DFS algorithm as beleow but how can i do the BFS what do i need to chande or add

PLZ REALLY NEED UR HELP

import java.util.*;

public class DFS{

Vertex startv;
Vertex endv;
Vector<AlgNode> q = new Vector<AlgNode> (10,10);
AlgNode start;

public DFS(Vertex startv, Vertex endv){

this.startv = startv;
this.endv = endv;
start = new AlgNode(startv) ;
q.add(start);
search();
}

public void search(){

AlgNode currentAN=null;

if((startv==nul l)||(endv==null )){

return;
}

boolean found = false;

search:
while(q.size()> 0){

currentAN = q.get(0);
q.remove(0);

Vertex v = currentAN.getVe rtex();

if(v.equals(end v)){
found = true;
break search;
}else{

AlgNode[] cs= currentAN.expan d();
for(int i = cs.length-1; i>=0; i--){

q.insertElement At(cs[i], 0);
}

}


}

if (found == true){

System.out.prin tln("Path Successfully Found");

Vertex[] as = currentAN.getAn cestors();

for(int i =0; i<as.length; i++){

System.out.prin tln(as[i].getNodeName()) ;
}
System.out.prin tln(endv.getNod eName());

}
else System.out.prin tln("No Possible Path");


}

}
Feb 22 '07 #3
r035198x
13,262 MVP
Hello
YES i KNOW THE ALGORITHM BUT NOT SURE HOW TO IMPLEMENT IT
i have the DFS algorithm as beleow but how can i do the BFS what do i need to chande or add

PLZ REALLY NEED UR HELP

import java.util.*;

public class DFS{

Vertex startv;
Vertex endv;
Vector<AlgNode> q = new Vector<AlgNode> (10,10);
AlgNode start;

public DFS(Vertex startv, Vertex endv){

this.startv = startv;
this.endv = endv;
start = new AlgNode(startv) ;
q.add(start);
search();
}

public void search(){

AlgNode currentAN=null;

if((startv==nul l)||(endv==null )){

return;
}

boolean found = false;

search:
while(q.size()> 0){

currentAN = q.get(0);
q.remove(0);

Vertex v = currentAN.getVe rtex();

if(v.equals(end v)){
found = true;
break search;
}else{

AlgNode[] cs= currentAN.expan d();
for(int i = cs.length-1; i>=0; i--){

q.insertElement At(cs[i], 0);
}

}


}

if (found == true){

System.out.prin tln("Path Successfully Found");

Vertex[] as = currentAN.getAn cestors();

for(int i =0; i<as.length; i++){

System.out.prin tln(as[i].getNodeName()) ;
}
System.out.prin tln(endv.getNod eName());

}
else System.out.prin tln("No Possible Path");


}

}
You are not doing a good job of following instructions.
The label is still there and you posted code without code tags.

Now no one is going to write the code for you. If you know the algorithm for BFS then try to convert that into Java code and post if you get any problems.
Feb 22 '07 #4

Sign in to post your reply or Sign up for a free account.

Similar topics

8
7712
by: slickn_sly | last post by:
Why am i getting an error? public void breadthFirst( TreeNode tNode) { Queue q = new Queue( ); if( q.isEmpty() ) { q.enqueue( this ); }
8
3599
by: Huihong | last post by:
Please check out our newly released source code search engine here, http://www.codase.com e.g., search socket method call, http://www.codase.com/search/call?name=socket&owner=&lang=*&type=&parameters=&obj= Rather than treating code as text, Codase understands programming languages, and treats code as code, the way it's supposed to be. This unique and syntax-aware approach provides the most accurate and detailed search results with...
9
5322
by: News | last post by:
I am new in using Python Anyone know how to implement breadth first search using Python? Can Python create list dynamically, I want to implement a program which will read data from a file and store each line into a list, is this possible? Please send mail to me at nickyncy@yahoo.com.hk or reply this mail Thanks a lot!
2
3794
by: xandra | last post by:
i have 2 question in breadth-first traversal.your help will be appreciated. 1. what is the purpose of the queue in breath-first traversal? 2 suppose you had a function call displayAtDepthN which when given a tree and depth would display only the nodes at that depth. explain how this could be used to give a breadth-first traversal of the tree,and why it would not be as efficient as one using a queue.
1
5395
by: Lord Raiden | last post by:
Hello lads i have a problem about the Breadth First Search . I need to do an implementation of a checking algorith that check from a Game Graph that i have create if every non-object node appears between 2 connection nodes The code that i have done untill now is : Can anyone helps public class StructurallyValidGraph extends GameGraph implements StructuralValidatorRules { private ArrayList<Node>ToDo; private ArrayList<Node>visited;
0
1654
by: varun aggarwal | last post by:
Hi i am doing the data structures in C++. I have seen the adjacency list implementation of depth first search/traversal that is using some recursive function to traverse the whole graph. but not able to find the same for breadth first search/traversal. All the implementation of breadth first are using adjacency matrix using queues. I am not sure if that is possible. If it is, can somebody give the code snippet of it or provide the link to it....
0
1323
by: archaaa | last post by:
Im trying to install nutch-0.7 on windows xp(sp 2) using cygwin and tomcat 4.0 under the guidance of http://lucene.apache.org/nutch/tutorial.html. All went well until the search was made. Im also quite confused with this one from the website:====================================== Assuming you've unpacked Tomcat as ~/local/tomcat, then the Nutch war file may be installed with the commands: rm -rf ~/local/tomcat/webapps/ROOT* cp nutch*.war...
3
2925
by: javaboyjavaboy | last post by:
i need the coding of Breadth First Search program
0
10766
Debadatta Mishra
by: Debadatta Mishra | last post by:
Introduction In this article I will provide you an approach to manipulate an image file. This article gives you an insight into some tricks in java so that you can conceal sensitive information inside an image, hide your complete image as text ,search for a particular image inside a directory, minimize the size of the image. However this is not a new concept, there is a concept called Steganography which enables to conceal your secret...
0
8686
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8615
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9173
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9033
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
8911
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
6533
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5872
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4375
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
2345
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.