4

C++ 草案提到了 std::lower_bound:

§ 25.4.3.1 lower_bound [lower.bound]  
template<class ForwardIterator, class T>  
ForwardIterator lower_bound(ForwardIterator first, 
                            ForwardIterator last, 
                            const T& value);  
template<class ForwardIterator, class T, class Compare>  
ForwardIterator lower_bound(ForwardIterator first, 
                            ForwardIterator last, 
                            const T& value, 
                            Compare comp);  

Requires: The elements e of [first,last) shall be partitioned with respect 
    to the expression e < value or comp(e, value).
Returns: The furthermost iterator i in the range [first,last] such that for 
    any iterator j in the range [first,i) the following corresponding 
    conditions hold: *j < value or comp(*j, value) != false.
Complexity: At most log2(last − first) + O(1) comparisons.

请注意,这允许(通过暗示)比较不同(但可比较)的类型而不是*ForwardIterator返回的类型,但对迭代器改进的数​​量没有复杂性限制。(对于基于节点的容器,这将是 O(last − first) 迭代器改进。)

§ 23.4.6.1
class set { 
   ...
    iterator lower_bound(const key_type& x);
    const_iterator lower_bound(const key_type& x) const;
   ...
}

该标准没有详细说明这些函数,但暗示这些函数用于 O(log2(last − first)) 比较和改进,但要求搜索键与包含的类型相同。

所以我的问题是:
(1)有没有办法获得std::set::lower_bound搜索类型的速度和灵活性std::lower_bound
(2) 为什么std::lower_bound不需要专门化std::set::iterator
(3) 是否有std::lower_bound 专门针对 的实现std::set::iterator,或者是否有理由不这样做?

我希望能找到类似的东西:

template< class Key, class Comp, class Alloc, class Lookup>  
std::set<Key, Compare, Alloc>::const_iterator 
    lower_bound(
        std::set<Key, Comp, Alloc>::const_iterator begin, 
        std::set<Key, Comp, Alloc>::const_iterator end, 
        const Lookup& find,
        Compare comp);
template< class Key, class Comp, class Alloc, class Lookup>  
std::set<Key, Compare, Alloc>::iterator 
    lower_bound(
        std::set<Key, Comp, Alloc>::iterator begin, 
        std::set<Key, Comp, Alloc>::iterator end, 
        const Lookup& find,
        Compare comp);

或者:

template < class Key, class Compare = less<Key>, class Allocator = allocator<Key> >
class set {
   ...
    template<class Lookup>
    iterator lower_bound(const Lookup& x);
    template<class Lookup>
    const_iterator lower_bound(const Lookup& x) const;
   ...
}

但我怀疑它的存在。显然,所有这些都可以扩展到其他基于树的容器和其他算法。我会自己编写代码,但这需要我使用特定于实现的代码。这个想法来自这个问题:Efective search in set with non-key type

4

1 回答 1

4

容器根据std::set在构造时给出的比较对象进行排序。当std::lower_bound被调用时,无法检查是否传递了匹配的比较对象,因此实现无法知道是使用标准算法还是专门用于集合的算法,因为后者仅在使用所使用的比较对象时有效对于集合的排序(或给出相同结果的排序)。

您添加的两个示例原型不起作用:

  1. 专注std::lower_boundstd::set迭代器:

    由于上面给出的原因,这将不起作用:无法检查给定的比较对象是否与集合构造函数中给定的比较对象匹配。你的原型只检查比较对象的类型是否匹配,但同一类型可以有不同的比较对象。

  2. 采用std::set::lower_bound模板参数:

    这可能使其与集合的比较对象不兼容,因为该对象operator()通常不会被模板化,并且只需要 type 的参数T

于 2011-09-20T17:15:37.443 回答