每日算法-07
2021-02-17 03:18
标签:osi ast fir 整数 array 元素 第一个 href position 在排序数组中查找元素的第一个和最后一个位置难度中等387给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。 每日算法-07 标签:osi ast fir 整数 array 元素 第一个 href position 原文地址:https://www.cnblogs.com/lwyy1223-/p/12700285.html
你的算法时间复杂度必须是 O(log n) 级别。
如果数组中不存在目标值,返回 [-1, -1]。
示例 1:
输入: nums = [5,7,7,8,8,10], target = 8
输出: [3,4]
示例 2:
输入: nums = [5,7,7,8,8,10], target = 6
输出: [-1,-1]
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-arrayclass Solution {
public int[] searchRange(int[] nums, int target) {
int[] aa = {-1, -1};
for (int i = 0; i = 0; j--) {
if (nums[j] == target) {
aa[1] = j;
break;
}
}
return aa;
}
}