leetcode-704.二分查找
给定一个 n 个元素有序的(升序)整型数组 nums 和一个目标值 target ,写一个函数搜索 nums 中的 target,如果目标值存在返回下标,否则返回 -1。
示例 1:
输入: nums = [-1,0,3,5,9,12], target = 9
输出: 4
解释: 9 出现在 nums 中并且下标为 4
示例 2:
输入: nums = [-1,0,3,5,9,12], target = 2
输出: -1
解释: 2 不存在 nums 中因此返回 -1
提示:
你可以假设 nums 中的所有元素是不重复的。
n 将在 [1, 10000]之间。
nums 的每个元素都将在 [-9999, 9999]之间。
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/binary-search
解:
数组有序且元素不重复,二分查找很适用。
#include<iostream>
#include<vector>
using namespace std;
class Solution {
public:
int search(vector<int>& nums, int target) {
size_t _first = 0, _last = nums.size()-1, _mid = (_first + _last) / 2;
while (_last - _first > 1)
{
if (nums[_mid] == target)
{
return _mid;
}
else
{
if (nums[_mid] < target)
{
_first = _mid;
_mid = (_first + _last) / 2;
}
else
{
_last = _mid;
_mid = (_first + _last) / 2;
}
}
}
if (nums[_first] == target)
{
return _first;
}
if (nums[_last] == target)
{
return _last;
}
return -1;
}
};
//test
int main()
{
vector<int> _nums;
int _target,n,m;
cin >> n;
for (int i = 0; i < n; ++i)
{
cin >> m;
_nums.push_back(m);
}
cin >> _target;
Solution s1;
cout << s1.search(_nums, _target) << endl;;
return 0;
}