`
frank-liu
  • 浏览: 1684963 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

leetcode: Search for a Range

 
阅读更多

问题描述:

Given a sorted array of integers, find the starting and ending position of a given target value.

Your algorithm's runtime complexity must be in the order of O(log n).

If the target is not found in the array, return [-1, -1].

For example,
Given [5, 7, 7, 8, 8, 10] and target value 8,
return [3, 4].

原问题链接:https://leetcode.com/problems/search-for-a-range/

 

问题分析

    这个问题主要是要求在一个排序的数组里给定元素的最左边和最右边可能的位置。这也是相当于二分查找方法的一个变体。在二分查找的过程中,当我们找到nums[mid] == target的时候就返回mid表示找到这个位置的值了。但是针对要求它最左边和最右边可能的取值,我们就需要稍微做一点变动。

    我们可以将这个问题先拆分成两个部分,比如说先求最左边位置的目标值。只要这个能够求出来,最右边的那个也就好办了。对于求最左边的目标值,我们可以定义一个临时的变量lpos。它的初始值为-1。当nums[mid] == target的时候,设置lpos = mid。同时将r = mid - 1。这样我们如果有更加左边的值的话通过这种方式可以找到后续的。而且这样可以逐步逼近到最终结果。

    同理,求最右边的目标值也一样。只是需要稍微做一点修改。这样得到的最终代码实现如下:

 

public class Solution {
    public int[] searchRange(int[] nums, int target) {
        int l = 0, r = nums.length - 1, lpos = -1, rpos = -1;
        while(l <= r) {
            int mid = l + (r - l) / 2;
            if(nums[mid] == target) {
                lpos = mid;
                r = mid - 1;
            } else if(nums[mid] < target) l = mid + 1;
            else r = mid - 1;
        }
        if(lpos == -1) {
            int[] result = {-1, -1};
            return result;
        }
        l = lpos; 
        r = nums.length - 1;
        while(l <= r) {
            int mid = l + (r - l) / 2;
            if(nums[mid] == target) {
                rpos = mid;
                l = mid + 1;
            } else if(nums[mid] < target) l = mid + 1;
            else r = mid - 1;
        }
        int[] result = {lpos, rpos};
        return result;
    }
}

 

 

 

2
5
分享到:
评论

相关推荐

    C语言-leetcode题解之34-search-for-a-range.c

    c语言入门 C语言_leetcode题解之34-search-for-a-range.c

    LeetCode最全代码

    201 | [Bitwise AND of Numbers Range](https://leetcode.com/problems/bitwise-and-of-numbers-range/) | [C++](./C++/bitwise-and-of-numbers-range.cpp) [Python](./Python/bitwise-and-of-numbers-range.py) | _...

    Leetcode题目+解析+思路+答案.pdf

    - **Search for a Range**:在一个排序数组中查找目标值的第一个和最后一个位置。 - **Search Insert Position**:在排序数组中查找目标值的插入位置。 2. **位操作(Bit Manipulation)**: - **Missing Number...

    _leetcode-python.pdf

    - Search for a Range: 给定一个按照升序排列的数组,和一个目标值,确定该目标值在数组中的开始位置和结束位置。 - Search Insert Position: 在一个排序数组中查找一个目标值,如果不存在则返回应该插入的位置。 - ...

    LeetCode C++全解

    1. Introduction 2. Array i. Remove Element ii. Remove Duplicates from Sorted Array iii....iv....v....vi....vii....viii....ix....x.... Search for a Range xiii. Search Insert Position xiv. Find Peak Element

    算法刷题笔记leetcode/lintcode

    - Search for a Range(搜索范围) - First Bad Version(第一个错误版本) - Search a 2D Matrix(二维矩阵中的搜索) - Search a 2D Matrix II(二维矩阵中的搜索II) - Find Peak Element(寻找峰值元素) ...

    算法-leetcode-剑指offer上的题很多

    - **在排序数组中寻找范围(Search for a Range)**: 在排序数组中找到给定数字范围的位置。 - **查找矩阵中的位置(Search a 2D Matrix)**: 在一个排序的矩阵中查找一个数字的位置。 #### 特殊算法 - **查找峰值元素...

    Leetcode_solutions:Leetcode问题解决方案

    2. **范围for循环**:使用范围for循环(range-based for loop)简化遍历容器的操作,如`for (auto& item : container) {...}`。 3. **RAII(Resource Acquisition Is Initialization)**:利用对象生命周期管理资源...

    python-leetcode面试题解之第79题单词搜索-题解.zip

    for i in range(rows): for j in range(cols): if dfs(i, j, 0): return True return False ``` 在这个实现中,`exist`函数是主入口,它首先检查输入是否有效,然后初始化一个`visited`矩阵来跟踪已访问的...

    python-leetcode面试题解之第96题不同的二叉搜索树-题解.zip

    LeetCode的第96题,全称是"不同的二叉搜索树"(Distinct Binary Search Trees),要求计算给定整数n有多少种不同的二叉搜索树结构。二叉搜索树的特性是左子树上的所有节点值都小于根节点,右子树上的所有节点值都...

    python-leetcode面试题解之第28题找出字符串中第一个匹配项的下标-python题解.zip

    for i in range(len(s) - len(t) + 1): if s[i:i+len(t)] == t: return i return -1 ``` 解决方案二:KMP算法 KMP(Knuth-Morris-Pratt)算法是一种更高效的字符串匹配算法,它避免了不必要的回溯,时间复杂度...

    Leetcode代码以及解答(2)

    Search for a Range **知识点:** - **问题描述:** - 给定一个排序数组和一个目标值,在数组中查找目标值出现的第一个和最后一个位置。 - **解决方案分析:** - **二分查找:** - 分别查找目标值的第一个和...

    LeetCode练习答案

    - **搜索区间(Search for a Range)**: 在一个按升序排列的数组中查找目标值的起始和结束位置。 - **搜索插入位置(Search Insert Position)**: 在一个排序数组中找到特定目标值应该被插入的位置。 - **寻找峰值元素...

    python-leetcode面试题解之第95题不同的二叉搜索树II-题解.zip

    标题中的“不同的二叉搜索树II”是LeetCode平台上的第95题,这道题目主要涉及到了数据结构——二叉树以及动态规划的概念。在面试中,这是一道常见的算法题,考察候选人的编程能力和对问题解决策略的理解。Python是...

    Leetcode200. 岛屿数量

    for i in range(nr): for j in range(nc): if grid[i][j] == '1': grid = search(grid, i, j) flag += 1 return flag ``` 其次,我们来看广度优先搜索(BFS)。BFS是一种非递归的搜索策略,它使用队列数据...

    常见算法介绍、算法刷题(含解析与代码)、笔试面试算法题文档总结.docx

    K = [[0 for w in range(W + 1)] for i in range(n + 1)] for i in range(n + 1): for w in range(W + 1): if i == 0 or w == 0: K[i][w] = 0 elif wt[i - 1] &lt;= w: K[i][w] = max(val[i - 1] + K[i - 1][w -...

    c++-c++编程基础之leetcode题解第34题在排序数组中查找元素的第一个和最后一个位置.zip

    vector&lt;int&gt; searchRange(vector&lt;int&gt;& nums, int target) { int first = -1, last = -1; for (int i = 0; i (); ++i) { if (nums[i] == target) { if (first == -1) first = i; last = i; } } return {...

    DP、二分-LeetCode300. 最长上升子序列(Python)

    这是一道经典的动态规划(Dynamic Programming, DP)和二分查找(Binary Search)问题。我们分别来看这两种解法。 ### 动态规划解法 动态规划是一种解决此类问题的有效方法,它通过建立状态和转移方程来避免重复...

    leetcode 39. 组合总和

    for i in range(len(candidates)): path.append(candidates[i]) # 尝试添加一个数到路径 dfs(candidates[i:], path) # 继续搜索 path.remove(candidates[i]) # 回溯,移除刚才添加的数 dfs(candidates, []) # ...

Global site tag (gtag.js) - Google Analytics