Posted By:
Andrew_Shultz
Posted On:
Friday, May 11, 2001 09:09 AM
IIRC, the standard Java collection tree is a Red-Black tree, which is already better than a standard binary tree.
You're unlikley to need an even better tree unless you're seriously banging the hell out of your tree data structure. I'd use the existing Collection tree, profile your usage, and then see if it's worth implementing something more exotic.