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?

link|improve this question

6% accept rate
You might want to start accepting or at least upvoting some answers on SO or people will be less inclined to answer your questions in future. – Adamski Sep 16 '09 at 11:41
t@adamski. thanks man. i dint know that my votinting help someone. frm now i will – user156073 Sep 16 '09 at 12:49
feedback

5 Answers

Take a look at http://www.jgrapht.org/ where a free java graph library is provided. Using this library you can create all kind of graphs, and since tree's is just a subset of graphs you can also create tree's with this library. A DFS (or BFS) is easy to implement using this library, or you can use the algorithms provided by the library. However, implementing a DFS (or BFS) is a good exercise.

Good Luck!

link|improve this answer
feedback

You could use DefaultMutableTreeNode to build your data structure. It contains methods breadthFirstEnumeration() and depthFirstEnumeration() and allows you to attach data to each node by calilng setUserObject(Object). Despite part of the javax.swing.tree package this is "model" code and so doesn't have any direct UI code dependencies.

link|improve this answer
feedback

Assuming you don't want duplicates in your structure, then TreeSet is a decent enough starting point. You get DFS for free (iterator()), and you can make use of the NavigableSet interface to build BFS.

link|improve this answer
1  
A couple of restrictions to bear in mind: TreeSet enforces that the underlying data is modelled as a binary tree and that it is comparable. – Adamski Sep 16 '09 at 11:03
feedback

No, there is no built-in structure. Given the Java base libraries have everything, it is crazy there is no equivalent to Data.Tree

The closest is java.util.TreeSet, which is designed to be a Set rather than a Tree (there's also the swing JTree, but it won't help you).

link|improve this answer
its pretty easy to crate a Tree data type - for a lib, its hard to make it general enough for all use cases, but all the needed parts are there in java already. – Chii Sep 16 '09 at 10:44
feedback

check this

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.