(External) Java library for creating Tree structure ?
- by suVasH.....
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.