在排序数组中查找元素的第一个和最后一个位置难度中等387给定一个按照升序排列的整数数组 nums,和一个目标值 target。找出给定目标值在数组中的开始位置和结束位置。
你的算法时间复杂度必须是 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-array算法
class Solution { public int[] searchRange(int[] nums, int target) { int[] aa = {-1, -1}; for (int i = 0; i < nums.length; i++) { if (nums[i] == target) { aa[0] = i; break; } } if (aa[0] == -1) { return aa; } for (int j = nums.length-1; j >= 0; j--) { if (nums[j] == target) { aa[1] = j; break; } } return aa; } }