码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode Search for a Range

时间:2015-02-25 21:10:33      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:

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 left = 0, right = n;
			while (left < right) {
				int mid = left + right >> 1;
				if (A[mid] >= target) 
					right = mid;
				else left = mid + 1;
			}
			int ansLeft = left;

			left = 0, right = n;
			while (left < right) {
				int mid = left + right >> 1;
				if (A[mid] > target)
					right = mid;
				else left = mid + 1;
			}

			if (A[ansLeft] != target)
				return vector<int>{-1, -1};
			else return vector<int>{ansLeft, left-1};
		}
};




LeetCode Search for a Range

标签:

原文地址:http://blog.csdn.net/u011345136/article/details/43940241

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!