C++ lower_bound 的库使用和自己实现

本文介绍了C++中lower_bound函数的使用,该函数用于在排序数组中找到第一个大于或等于指定值的元素。首先展示了库函数的用法,然后详细解释了如何基于二分查找自实现lower_bound函数。示例代码清晰地展示了这两个方法,并在main函数中进行了测试。

C++ lower_bound 的库使用和自己实现

1. 库函数的使用

功能:查找一个数组中的第一个大于或等于指定值的数。返回一个迭代器。

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int main() {
	vector<int> nums = {1, 4, 5, 5, 8, 9, 3, 2};
	sort(nums.begin(), nums.end());  //注意传入之前需要进行排序
	auto it = lower_bound(nums.begin(), nums.end(), 6);
	if (it != nums.end()) {
		cout << "第一个不小于 6 的数值为:" <<  *it << endl;
	}
	return 0;
}

// 输出: 第一个不小于 6 的数值为:8

2. 基于二分查找的自己实现

#include <iostream>
#include <vector>
#include <algorithm>

using namespace std;

int lower_bound(vector<int>& nums, int target) {
	int n = nums.size();
	int left = 0, right = n - 1;

	while (left < right) {   // 退出循环时只有left=right一种可能
		int mid = left + ((right - left) >> 1);
		if (nums[mid] < target) {
			left = mid + 1;  //不断缩小左边界
		}
		else {
			right = mid;
		}
	}

	return nums[left] >= target ? nums[left] : INT_MAX;  //没有找到的话就返回INT_MAX;
}


int main() {
	
	//库函数实现
	vector<int> nums = {1, 4, 5, 5, 8, 9, 3, 2};
	sort(nums.begin(), nums.end());

	auto it = lower_bound(nums.begin(), nums.end(), 6);
	if (it != nums.end()) {
		cout << "第一个不小于 6 的数值为:" <<  *it << endl;
	}
	
	//自己实现
	int res = lower_bound(nums, 10);
	//cout << res << endl;

	return 0;

}


评论
成就一亿技术人!
拼手气红包6.0元
还能输入1000个字符
 
红包 添加红包
表情包 插入表情
 条评论被折叠 查看
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值