where is the Tree in java.util.Collections?
I allways wandered why there's no generic api defined for trees under the umbrella of java.util.Collections api. And every time I needet to handle tree-structured data I ended up writing quite the same code with slight modifications once again. So I recently started to create an API that is both generic and powerfull enough to never again write a line of code just to handle objects that are organized in graphs.
Please read through the javadoc and tell me your thoughts!
- Login or register to post comments
- Printer-friendly version
- ntruchsess's blog
- 3006 reads






Comments
Looks good. I was surprised
by burusu - 2010-10-21 19:56
Looks good. I was surprised that Collections was missing trees too.
Where can I download the source Norbert?