Binary Search trees

Does c++ have a library that implements a binary search tree, or do you have to build them yourself?
i guess you need to build it yourself...

L B (1077) Jul 14, 2011 at 1:57pm
http://www.cplusplus.com/reference/algorithm/binary_search/


Isn't that just an algorithm to do a binary search on an array? I'm more interested in building a tree data structure. Say something like an AVL tree, Red-Black tree, ect. Is there a library to do anything like that?
Ok after a little thought I think a heap will be plenty sufficient for what I am trying to do.
Topic archived. No new replies allowed.