LeetCode(剑指 Offer)- 53 - I. 在排序数组中查找数字 I
Posted 放羊的牧码
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode(剑指 Offer)- 53 - I. 在排序数组中查找数字 I相关的知识,希望对你有一定的参考价值。
题目链接:点击打开链接
题目大意:略
解题思路:略
相关企业
- 字节跳动
- 亚马逊(Amazon)
- 微软(Microsoft)
- 谷歌(Google)
- 苹果(Apple)
- 领英(LinkedIn)
- 彭博(Bloomberg)
AC 代码
- Java
// 解决方案(1)
class Solution
public int search(int[] nums, int target)
int from = find(nums, target - 0.1, target);
int to = find(nums, target + 0.1, target);
if (to < 0 || from > nums.length - 1)
return 0;
return to - from - 1;
private int find(int[] nums, double num, int target)
int left = 0;
int right = nums.length - 1;
int rs = -1;
while (left <= right)
int mid = (left + right) / 2;
if (nums[mid] > num)
rs = right = mid - 1;
else if (nums[mid] < num)
rs = left = mid + 1;
else
return -1;
// 因为 rs 此时无论如何可能在目标值左边或右边, 而不是我们想当然的一定在目标值的(小于目标值)左边或(大于目标值)右边
// 所以需要修复一定让 rs 在目标值的(小于)左边或(大于)右边
if (rs == -1 || rs == nums.length)
return rs;
else if (num > target && nums[rs] < num)
return rs + 1;
else if (num < target && nums[rs] > num)
return rs - 1;
return rs;
// 解决方案(2)
class Solution
public int search(int[] nums, int target)
return helper(nums, target) - helper(nums, target - 1);
int helper(int[] nums, int tar)
int i = 0, j = nums.length - 1;
while(i <= j)
int m = (i + j) / 2;
if(nums[m] <= tar) i = m + 1;
else j = m - 1;
return i;
- C++
class Solution
public:
int search(vector<int>& nums, int target)
return helper(nums, target) - helper(nums, target - 1);
private:
int helper(vector<int>& nums, int tar)
int i = 0, j = nums.size() - 1;
while(i <= j)
int m = (i + j) / 2;
if(nums[m] <= tar) i = m + 1;
else j = m - 1;
return i;
;
以上是关于LeetCode(剑指 Offer)- 53 - I. 在排序数组中查找数字 I的主要内容,如果未能解决你的问题,请参考以下文章
LeetCode(剑指 Offer)- 53 - I. 在排序数组中查找数字 I
LeetCode(剑指 Offer)- 53 - II. 0~n-1中缺失的数字
LeetCode(剑指 Offer)- 53 - II. 0~n-1中缺失的数字
LeetCode(剑指 Offer)- 53 - I. 在排序数组中查找数字 I