• <bdo id='AAxUu'></bdo><ul id='AAxUu'></ul>

    <small id='AAxUu'></small><noframes id='AAxUu'>

  1. <tfoot id='AAxUu'></tfoot>

      <legend id='AAxUu'><style id='AAxUu'><dir id='AAxUu'><q id='AAxUu'></q></dir></style></legend>
      <i id='AAxUu'><tr id='AAxUu'><dt id='AAxUu'><q id='AAxUu'><span id='AAxUu'><b id='AAxUu'><form id='AAxUu'><ins id='AAxUu'></ins><ul id='AAxUu'></ul><sub id='AAxUu'></sub></form><legend id='AAxUu'></legend><bdo id='AAxUu'><pre id='AAxUu'><center id='AAxUu'></center></pre></bdo></b><th id='AAxUu'></th></span></q></dt></tr></i><div id='AAxUu'><tfoot id='AAxUu'></tfoot><dl id='AAxUu'><fieldset id='AAxUu'></fieldset></dl></div>

      std::lower_bound 不专门用于红黑树迭代器是否有任何技术原因?

      Is there any technical reason why std::lower_bound is not specialized for red-black tree iterators?(std::lower_bound 不专门用于红黑树迭代器是否有任何技术原因?)
    1. <i id='mCISU'><tr id='mCISU'><dt id='mCISU'><q id='mCISU'><span id='mCISU'><b id='mCISU'><form id='mCISU'><ins id='mCISU'></ins><ul id='mCISU'></ul><sub id='mCISU'></sub></form><legend id='mCISU'></legend><bdo id='mCISU'><pre id='mCISU'><center id='mCISU'></center></pre></bdo></b><th id='mCISU'></th></span></q></dt></tr></i><div id='mCISU'><tfoot id='mCISU'></tfoot><dl id='mCISU'><fieldset id='mCISU'></fieldset></dl></div>
        <bdo id='mCISU'></bdo><ul id='mCISU'></ul>

        <small id='mCISU'></small><noframes id='mCISU'>

        <legend id='mCISU'><style id='mCISU'><dir id='mCISU'><q id='mCISU'></q></dir></style></legend>

          <tfoot id='mCISU'></tfoot>
                <tbody id='mCISU'></tbody>
              1. 本文介绍了std::lower_bound 不专门用于红黑树迭代器是否有任何技术原因?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我一直假设 std::lower_bound() 以对数时间运行,如果我传递一对红黑树迭代器(set::iteratormap::iterator) 到它.我不得不烧了自己两次才能注意到 std::lower_bound() 在这种情况下以 O(n) 时间运行,至少在 libstdc++ 实现中是这样.我知道标准没有红黑树迭代器的概念;std::lower_bound() 会将它们视为双向迭代器,并在线性时间内 advance 它们.我仍然不明白为什么实现不能为红黑树迭代器创建一个实现特定的迭代器标签并调用一个专门的 lower_bound() 如果通过in 迭代器恰好是红黑树迭代器.

                I have always assumed that std::lower_bound() runs in logarithmic time if I pass a pair of red-black tree iterators (set::iterator or map::iterator) to it. I had to burn myself twice to notice that std::lower_bound() runs in O(n) time in this case, at least with the libstdc++ implementation. I understand that the standard doesn't have the concept of red-black tree iterators; std::lower_bound() will treat them as bidirectional iterators and advance them in linear time. I still don't see any reason why the implementation couldn't create an implementation specific iterator tag for red-black tree iterators and call a specialized lower_bound() if the passed in iterators happen to be red-black tree iterators.

                std::lower_bound() 不是专门用于红黑树迭代器的,有什么技术原因吗?

                Is there any technical reason why std::lower_bound() is not specialized for red-black tree iterators?

                更新:是的,我知道 find 成员函数,但这不是重点.(在模板化代码中,我可能无法访问容器或仅在容器的一部分上工作.)

                UPDATE: Yes, I am aware of the find member functions but it is so not the point. (In a templated code I may not have access to the container or work only on a part of container.)

                赏金到期后:我发现 Mehrdad 和 Yakk 的回答最有说服力.我也无法在两者之间做出决定;我给 Mehrdad 赏金并接受 Yakk 的回答.

                After the bounty has expired: I find Mehrdad's and Yakk's answers the most convincing. I couldn't decide between the too; I am giving the bounty to Mehrdad and accepting Yakk's answer.

                推荐答案

                没有技术原因无法实施.

                There is no technical reason why this could not be implemented.

                为了演示,我将勾勒出实现这一点的方法.

                To demonstrate, I will sketch out a way to implement this.

                我们添加了一个新的迭代器类别,SkipableIterator.它是 BiDirectionalIterator 的子类型和 RandomAccessIterator 的超类型.

                We add a new Iterator category, SkipableIterator. It is a subtype of BiDirectionalIterator and a supertype of RandomAccessIterator.

                SkipableIterator 保证函数 betweenstd::between 可见的上下文中完成.

                SkipableIterators guarantee that the function between done in a context where std::between is visible works.

                template<typeanme SkipableIterator>
                SkipableIterator between( SkipableIterator begin, SkipableIterator end )
                

                between 返回 beginend 之间的迭代器.它返回 end 当且仅当 ++begin == end(end 紧跟 begin 之后).

                between returns an iterator between begin and end. It returns end if and only if ++begin == end (end is right after begin).

                从概念上讲,between 应该有效地找到一个大约介于"beginend 之间的元素,但我们应该小心允许随机跳过列表或平衡的红黑树都可以工作.

                Conceptually, between should efficiently find an element "about half way between" begin and end, but we should be careful to allow a randomized skip list or a balanced red black tree to both work.

                随机访问迭代器有一个非常简单的between实现——return (begin + ((end-begin)+1)/2;

                Random access iterators have a really simple implementation of between -- return (begin + ((end-begin)+1)/2;

                添加新标签也很容易.只要现有代码正确使用标签调度(并且没有明确专门化),派生就会使现有代码运行良好,但这里有一个小问题.我们可以有标签版本",其中 iterator_category_2iterator_category 的改进(或者更简单的东西),或者我们可以使用完全不同的机制来讨论可跳过的迭代器(一个独立迭代器特征?).

                Adding a new tag is also easy. Derivation makes existing code work well so long as they properly used tag dispatching (and did not explicitly specialize), but there is a small concern of breakage here. We could have "tag versions" where iterator_category_2 is a refinement of iterator_category (or soemthing less hacky), or we could use a completely different mechanism to talk about skipable iterators (an independent iterator trait?).

                一旦我们有了这个能力,我们就可以编写一个快速有序的搜索算法,适用于map/setmulti.它也适用于像 QList 这样的跳过列表容器.它甚至可能与随机访问版本的实现相同!

                Once we have this ability, we can write a fast ordered searching algorithms that works on map/set and multi. It would also work on a skip list container like QList. It might be even the same implementation as the random access version!

                这篇关于std::lower_bound 不专门用于红黑树迭代器是否有任何技术原因?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                本站部分内容来源互联网,如果有图片或者内容侵犯了您的权益,请联系我们,我们会在确认后第一时间进行删除!

                相关文档推荐

                Unable to access non-const member functions of objects in C++ std::set(无法访问 C++ std::set 中对象的非常量成员函数)
                How should a size-limited stl-like container be implemented?(应该如何实现大小受限的 stl 类容器?)
                Constructing std::function argument from lambda(从 lambda 构造 std::function 参数)
                STL BigInt class implementation(STL BigInt 类实现)
                Sync is unreliable using std::atomic and std::condition_variable(使用 std::atomic 和 std::condition_variable 同步不可靠)
                Move list element to the end in STL(在 STL 中将列表元素移动到末尾)
                <legend id='mchKz'><style id='mchKz'><dir id='mchKz'><q id='mchKz'></q></dir></style></legend>

                <tfoot id='mchKz'></tfoot>
              2. <small id='mchKz'></small><noframes id='mchKz'>

                      • <bdo id='mchKz'></bdo><ul id='mchKz'></ul>
                      • <i id='mchKz'><tr id='mchKz'><dt id='mchKz'><q id='mchKz'><span id='mchKz'><b id='mchKz'><form id='mchKz'><ins id='mchKz'></ins><ul id='mchKz'></ul><sub id='mchKz'></sub></form><legend id='mchKz'></legend><bdo id='mchKz'><pre id='mchKz'><center id='mchKz'></center></pre></bdo></b><th id='mchKz'></th></span></q></dt></tr></i><div id='mchKz'><tfoot id='mchKz'></tfoot><dl id='mchKz'><fieldset id='mchKz'></fieldset></dl></div>
                            <tbody id='mchKz'></tbody>