[0034] 在排序数组中查找元素的第一个和最后一个位置
- GitHub
- http://leetcode.xuezhisd.top/post/ec5b185d.html
- https://leetcode.com/problems/find-first-and-last-position-of-element-in-sorted-array
- https://leetcode-cn.com/problems/find-first-and-last-position-of-element-in-sorted-array
题目描述
给定一个按照升序排列的整数数组 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]
Related Topics
题目解析
- [请一句话描述题目…]
不确定性
方法一:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |
方法二:[算法名称]
分析
思路
注意
知识点
复杂度
代码
1 | // |