228. 汇总区间

转载自Leet Code

题目描述

给定一个无重复元素的有序整数数组nums。 返回恰好覆盖数组中所有数字最小有序区间范围列表。 也就是说,nums的每个元素都恰好被某个区间范围所覆盖, 并且不存在属于某个范围但不属于nums的数字x。 列表中的每个区间范围[a,b]应该按如下格式输出:

  • "a->b",如果a != b
  • "a",如果a == b 

示例 1: >输入:nums = [0,1,2,4,5,7] >输出:["0->2","4->5","7"] > >解释:区间范围是: >[0,2] --> "0->2" >[4,5] --> "4->5" >[7,7] --> "7"

示例 2: >输入:nums = [0,2,3,4,6,8,9] >输出:["0","2->4","6","8->9"] > >解释:区间范围是: >[0,0] --> "0" >[2,4] --> "2->4" >[6,6] --> "6" >[8,9] --> "8->9"

示例 3: >输入:nums = [] >输出:[]

示例 4: >输入:nums = [-1] >输出:["-1"]

示例 5: >输入:nums = [0] >输出:["0"]

提示

  • 0 <= nums.length <= 20
  • -231 <= nums[i] <= 231 - 1
  • nums 中的所有值都 互不相同
  • nums 按升序排列

我的代码

{.line-numbers}
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
class MySolution228 
{
public List<String> summaryRanges(int[] nums) {
List<String> list = new LinkedList();
if (nums.length<1) return list;

int pre = nums[0]; String strPre= Integer.toString(pre);
int tail = nums[0]; String strTail = null;

for (int i=1; i<nums.length; i++)
{
if (nums[i]==tail+1)
{
tail=nums[i];
strTail = Integer.toString(tail);
}
else
{
if (strTail!=null)
list.add(strPre+"->"+strTail);
else
list.add(strPre);

pre = nums[i]; strPre = Integer.toString(pre);
tail = nums[i]; strTail = null;
}
}

if (strTail!=null)
list.add(strPre+"->"+strTail);
else
list.add(strPre);

return list;
}
}