gpt4 book ai didi

c++ - std::set,lower_bound 和 upper_bound 是如何工作的?

转载 作者:可可西里 更新时间:2023-11-01 16:36:09 51 4
gpt4 key购买 nike

我有一段简单的代码:

#include <iostream>
#include <set>

using std::set;

int main(int argc, char argv) {
set<int> myset;
set<int>::iterator it_l, it_u;
myset.insert(10);
it_l = myset.lower_bound(11);
it_u = myset.upper_bound(9);

std::cout << *it_l << " " << *it_u << std::endl;
}

这会打印 1 作为 11 的下限,10 作为 9 的上限。

我不明白为什么要打印 1。我希望使用这两种方法来获取给定上限/下限的一系列值。

最佳答案

来自 cppreference.comstd::set::lower_bound 上:

Return value

Iterator pointing to the first element that is not less than key. If no such element is found, a past-the-end iterator (see end()) is returned.

在您的情况下,由于集合中没有不小于(即大于或等于)11 的元素,因此返回尾后迭代器并将其分配给 it_l。然后在你的行中:

std::cout << *it_l << " " << *it_u << std::endl;

您正在引用这个尾部迭代器 it_l:这是未定义的行为,并且可能导致任何结果(在您的测试中为 1,在其他编译器中为 0 或任何其他值,或者程序甚至可能崩溃)。

您的下限应小于或等于上限,并且您不应在循环或任何其他测试环境外取消引用迭代器:

#include <iostream>
#include <set>

using std::set;

int main(int argc, char argv) {
set<int> myset;
set<int>::iterator it_l, it_u;
myset.insert(9);
myset.insert(10);
myset.insert(11);
it_l = myset.lower_bound(10);
it_u = myset.upper_bound(10);

while(it_l != it_u)
{
std::cout << *it_l << std::endl; // will only print 10
it_l++;
}
}

关于c++ - std::set,lower_bound 和 upper_bound 是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40484285/

51 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com