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

 

在排序数组中搜索一个值有多少个,并返回其两边下标,没有找到就返回[-1,-1]。注意时间效率是O(logN)。这就肯定要用到二分法的思想了。

主要难度是处理好下标的走势。

有三种方法可以求解:

1 调用STL,不过注意处理调用后的返回值。

vector<int> searchRange(int A[], int n, int target) 
	{
		auto itup = upper_bound(A, A+n, target);
		auto itlow = lower_bound(A, A+n, target);
		vector<int> res;
		if (*itlow == target)
			res.push_back(itlow-A);
		else res.push_back(-1);
		if (*(itup-1) == target)
			res.push_back(itup-A-1);
		else res.push_back(-1);
		return res;
	}


2 模仿STL写这个程序,注意处理结果

vector<int> searchRange2(int A[], int n, int target) 
	{
		int step = 0;
		int it = 0;
		int first = 0;
		vector<int> res;
		for (int count = n; count>0;)
		{
			it = first;
			step=count/2; 
			it += step;
			if (A[it]<target) 
			{
				first=++it;
				count-=step+1;
			}
			else count=step;
		}
		if (A[first] != target)
		{
			res.resize(2,-1);
			return res;
		}
		res.push_back(first);
		step = 0;
		it = 0;
		first = 0;
		for (int count = n; count>0;)
		{
			it = first;
			step=count/2; 
			it += step;
			if (!(A[it]>target)) 
			{
				first=++it;
				count-=step+1;
			}
			else count=step;
		}
		res.push_back(first-1);
		return res;
	}


 3 思路:

一) 二分法查找到target

二)两边扩张找相等的值

	vector<int> searchRange3(int A[], int n, int target) 
	{
		int mid = biSearch(A, 0, n-1, target);
		vector<int> res(2,-1);
		if (mid == -1) return res;
		int t = mid;
		for (t = mid; t > 0 && A[t] == A[t-1]; t--);
		res[0] = t;
		for (t = mid; t < n-1 && A[t] == A[t+1]; t++);
		res[1] = t;
		return res;
	}

	int biSearch(int A[], int low, int up, int tar)
	{
		if (low>up) return -1;
		int mid = low + ((up-low)>>1);
		if (A[mid] < tar)
			return biSearch(A, mid+1, up, tar);
		if (A[mid] > tar)
			return biSearch(A, low, mid-1, tar);
		return mid;
	}


 2014-1-1元旦更新:

程序思路更加清晰,系统 -- 深入理解二分法,以及清楚知道最后二分法的两端指标会落到何处,故此,能写出如此精确的程序。

vector<int> searchRange4(int A[], int n, int target) 
	{
		vector<int> v(2,-1);
		if (n<1) return v;

		int low = 0, up = n-1, mid = 0;
		while (low <= up)
		{
			mid = low + ((up-low)>>1);
			if (A[mid] >= target) up = mid-1;
			else low = mid+1;
		}
		if (low < n) v[0] = A[low] == target? low:-1;
		if (v[0] == -1) return v;

		low = 0, up = n-1;
		while (low <= up)
		{
			mid = low + ((up-low)>>1);
			if (A[mid] <= target) low = mid+1;
			else up = mid-1;
		}
		v[1] = up;
		return v;
	}


//2014-1-26 update
class Solution126 {
public:
	vector<int> searchRange(int A[], int n, int target) 
	{
		vector<int> rs(2, -1);
		int low = 0, up = n-1;
		while (low <= up)
		{
			int mid = low + ((up-low)>>1);
			if (A[mid] >= target) up = mid-1;
			else low = mid+1;
		}
		if (low >= n || A[low] != target) return rs;
		rs[0] = low;

		for (low = 0, up = n-1 ; low <= up; )
		{
			int mid = low + ((up-low)>>1);
			if (A[mid] <= target) low = mid+1;
			else up = mid-1;
		}
		rs[1] = up;
		return rs;
	}
};


 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
LeetCode是一个面向编程准备面试的在线平台,它提供了各种编程题目来帮助开发人员提高算法和数据结构的能力。下面是一个使用Java进行LeetCode刷题的指南: 1. 熟悉题库:首先,你需要熟悉LeetCode的题库。了解各种类型的题目,比如数组、字符串、链表、树等等,并了解它们对应的解决方法。 2. 制定计划:根据自己的时间和能力安排一个刷题计划,每天或每周刷一定数量的题目。有计划地刷题可以保证你的学习进度。 3. 注重基础:LeetCode要求高效的算法和数据结构知识,所以确保你掌握了一些基本的数据结构和算法,比如数组、链表、栈、队列、二叉树、图等等。 4. 解题过程:当你开始解题时,首先仔细阅读题目描述,并理解问题的要求。然后分析问题,尽量找到一种简单而高效的解决方案。 5. 编码实现:在理解和分析问题之后,使用Java编写代码来解决问题。编写简洁、高效的代码可以提高你的编码能力。 6. 测试和优化:编写测试用例来验证你的代码是否正确,并分析你的代码的时间复杂度和空间复杂度。根据测试结果,进行代码优化以提高性能。 7. 学习他人的解决方案:LeetCode上有很多高手,他们在解决问题时可能采用了一些巧妙的解决方案。阅读和学习他们的代码可以帮助你提高自己的解题能力。 8. 多实践,多思考:不仅仅完成题目,还需要总结经验和教训。多思考为什么这个解决方案是高效的,以及如何在其他类似问题上应用相同的思路。 通过遵循这个LeetCode刷题指南,你可以提高自己的算法和数据结构的能力,为面试做好准备。刷题不仅仅是为了通过面试,更是提升自己的编程技能和思维能力的一种训练。

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值