-
Notifications
You must be signed in to change notification settings - Fork 20
st_tree documentation
erikerlandson edited this page May 12, 2011
·
7 revisions
The st_tree tree container interface consists of the following classes
tree<Data, CSModel, Alloc> – The tree container class
tree<Data, raw<>, Alloc>::node_type – Tree node with raw (vector-like) child storage
tree<Data, ordered<Compare>, Alloc>::node_type – Tree node with ordered (multiset-like) child storage
tree<Data, keyed<Key, Compare>, Alloc>::node_type – Tree node with keyed (map-like) child storage
The st_tree library is entirely templatized, and so installation is simply a matter of including the header files in your include path. You can read more about download, installation and build here:
st_tree installation and building