zoukankan      html  css  js  c++  java
  • Search for a Range 分类: Leetcode(查找) Leetcode(排序) 2015-04-10 15:34 23人阅读 评论(0) 收藏

    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].

     
    class Solution {
    public:
        vector<int> searchRange(int A[], int n, int target) {
            int i = 0, j = n-1;
            vector<int> vec;
            while( A[i] != target && i < n ) {
                i++;
            }
            while( A[j] != target && j > 0 ) {
                j--;
            }
            
            if( i == n  || j== -1) {
                vec.push_back(-1);
                vec.push_back(-1);
            }
            
            else {
                vec.push_back(i);
                vec.push_back(j);
            }
            
            return vec;
        }
    };

    class Solution {
    public:
        vector<int> searchRange(int A[], int n, int target) {
            int i = 0, j = n-1;
            vector<int> ret(2,-1);
            
            while(i < j) {
                int mid = (i+j) / 2;
                if (A[mid] < target) i = mid + 1;
                else j = mid;
            }
            
            if (A[i] != target) return ret;
            else ret[0] = i;
            
            j = n-1;
            while(i < j) {
                int mid = (i+j+1) /2 ;
                if (A[mid] > target) j = mid-1;
                else i = mid;
            }
            ret[1] = j;
            return ret;
        }
    };


    版权声明:本文为博主原创文章,未经博主允许不得转载。

  • 相关阅读:
    开博说两句
    学习总结 (持续更新)
    ip代理 120203
    [vs2005]关于预编绎网站的问题[已预编译此应用程序的错误]
    JAVA类基础
    集合类和泛型
    IO流——字符流
    多线程和包
    多态和内部类
    抽象类与接口
  • 原文地址:https://www.cnblogs.com/learnordie/p/4656939.html
Copyright © 2011-2022 走看看