Re: Standard iterator model and tree<>
On May 7, 1:59 pm, Le Chaud Lapin <jaibudu...@gmail.com> wrote:
On May 6, 4:55 pm, Seungbeom Kim <musip...@bawi.org> wrote:
This might be a digression, but what's the property in your tree<> class
model that prevents its iterators from conforming to the standard iterator
model that we have now?
I have never used STL so perhaps I am wrong, but it would seem that
applying (++) or (--) to an iterator of a tree<> would not make sense.
It would do a depth-first traversal.
There must have been something that the committee members could not agree on
that kept the tree from making it into the standard, but the standard itself
has nothing that keeps trees from being adopted. Map and set are internally
based on trees, already, and they support all the bidirectional iterator
operations; look at the implementation of those trees in your library, such
as _Rb_tree<> and _Rb_tree_iterator<> in the GNU ISO C++ Library, and give a
thought to why your tree<> class cannot do the similar things.
I'd be curious to know what that is. I find it strange that what is
arguably one of the most fundamental data structures used to help with
complex systems is not found in the STL.
It is there by stealth, in the form of std::heap and
std::priority_queue.
Although the standard does not *require* these to be implemented
as trees, every implementation I've seen has used trees.
If these trees don't meet your requirements then I think you have
answered your own question. There are dozens of possible types
of tree, insertion algorithm, deletion algorithm, balancing criteria
and algorithms, etc. etc. Is it possible to come up with a tree
that is diverse enough to meet everyone's need, but not bloated
so that people would roll their own instead of using std::tree?
(If so, please write one!!)
--
[ See http://www.gotw.ca/resources/clcm.htm for info about ]
[ comp.lang.c++.moderated. First time posters: Do this! ]