LintCode问题图解-34
2017-11-12 本文已影响1人
billliu_0d62
本文准备讲解1个简单的算法编程问题, 这个算法编程问题来自LintCode平台。不了解.LintCode平台的读者可以阅读笔者文章(在线编程平台推荐-LeetCode)。问题的英文版本描述如下:
Range
For a sorted array, find the starting position and the ending position for duplicates.
If the target is not found in the array, return [-1, -1].
Example
[5, 7, 7, 8, 8, 10] and 8,
return [3, 4]
介绍1种简单高效的算法。
简单高效的算法