6

如果我有以下向量 {10 10 10 20 20 20 30 30} 并且我想要一个函数来返回整数的位置 = X 或直接返回 X 之后的较小元素,例如如果我正在搜索 11 我想要返回 2 的函数,因为第 2 个元素(10)是向量中第一个小于 11 的元素。
我尝试使用 lower_bound 但这不起作用。

int myints[] = {10,20,30,30,20,10,10,20};
vector<int> v(myints,myints+8);           // 10 20 30 30 20 10 10 20
vector<int>::iterator low,up;

sort (v.begin(), v.end());                // 10 10 10 20 20 20 30 30

low=lower_bound (v.begin(), v.end(), 11); //
up= upper_bound (v.begin(), v.end(), 11); //

cout << "lower_bound at position " << int(low- v.begin()) << endl;
cout << "upper_bound at position " << int(up - v.begin()) << endl;

return 0;

此代码输出:

lower_bound at position 3
upper_bound at position 3
4

5 回答 5

10

cppreference 告诉我std::lower_bound

返回一个迭代器,指向范围 [first, last) 中不小于 value的第一个元素

std::upper_bound

返回一个迭代器,指向范围 [first, last) 中大于 value的第一个元素

在这种情况下,给定一个包含10 10 10 20 20 20 30 30我希望两个函数都指向第一个向量的向量20,它位于向量中的第 3 位,并且确实是您两次得到的结果。如果您改为要求20,std::lower_bound将返回一个迭代器,该迭代器指向20向量中的第一个(位置 3)...第一个不小于 20 的数字与您在要求时得到的结果相同11。但是,在这种情况下,std::upper_bound将返回一个指向第一个30(位置 6)的迭代器,这是第一个大于 20 的值。

只需将迭代器移回一个以获得小于目标数的最后一个值,std::prev这是一种方法。

于 2012-11-15T14:18:26.200 回答
3

好吧,upper_bound返回大于测试项目的第一个项目,那么之前的项目(如果存在)将是您想要的项目?

于 2012-11-15T14:17:24.223 回答
0

你可以这样做......如果向量为空,最好返回一个迭代器......

auto find_next_smaller(vector<int> vec, const int x) { 
    std::sort(vec.begin(), vec.end());
    auto it = std::lower_bound(vec.begin(), vec.end(), x); 
    if (it == vec.end()) { 
      it = (vec.rbegin()+1).base();
    }
    else if (it != vec.begin() && *it > x) { 
        --it; 
    }

    return it; 
} 
于 2015-03-14T13:13:32.290 回答
0

如果必须找到小于或等于某个 x 的元素,则可以使用 multiset 来做到这一点。

#include <iostream> 
#include <set> 
#include <iterator> 

using namespace std; 

int main() 
{
    multiset <int, greater <int> > iammultiset;
    iammultiset.insert(10);
    iammultiset.insert(10);
    iammultiset.insert(14);
    iammultiset.insert(20);
    iammultiset.insert(20);
    iammultiset.insert(30);
    iammultiset.insert(40);
    iammultiset.insert(50);
    //{10,10,14,20,20,30,40,50}
    
    cout<<*iammultiset.lower_bound(17) << endl;
    //The Output here will be 14.
    
    cout<<*iammultiset.lower_bound(20) << endl;
    //The Output here will be 20.
}
于 2020-07-03T04:30:22.107 回答
0
#include <bits/stdc++.h>
using namespace std;
template <typename F, typename T>

F first_less_than(F f, F l, T val)
{
    auto it = lower_bound(f, l, val);
    return it == f ? l : --it;
}

int main()
{
    vector<int> s{10, 20, 25, 40};
    auto j = first_less_than(s.begin(), s.end(), 35);

    cout << *j;

    //output : 25
    return 0;
}
于 2022-02-26T21:33:21.667 回答