(External) Java library for creating Tree structure ?

Posted by suVasH..... on Stack Overflow See other posts from Stack Overflow or by suVasH.....
Published on 2010-03-27T18:07:08Z Indexed on 2010/03/27 18:13 UTC
Read the original article Hit count: 316

Filed under:
|
|
|

I am planning to implement a tree structure where every node has two children and a parent along with various other node properties (and I'd want to do this in Java )

Now, the way to it probably is to create the node such that it links to other nodes ( linked list trick ), but I was wondering if there is any good external library to handle all this low level stuff. ( for eg. the ease of stl::vector vs array in C++ ).

I've heard of JDots, but still since i haven't started (and haven't programmed a lot in Java), I'd rather hear out before I begin.

© Stack Overflow or respective owner

Related posts about java

Related posts about tree