forked from DengWangBao/Leetcode-Java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSummaryRanges.java
More file actions
31 lines (28 loc) · 833 Bytes
/
SummaryRanges.java
File metadata and controls
31 lines (28 loc) · 833 Bytes
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
import java.util.LinkedList;
import java.util.List;
/**
* https://leetcode.com/articles/summary-ranges/
* 和 163. Missing Ranges 比较类似
*/
public class SummaryRanges {
public List<String> summaryRanges(int[] nums) {
List<String> list = new LinkedList<>();
if (nums == null || nums.length == 0) {
return list;
}
int start = nums[0], to = start;
for (int i = 1; i < nums.length; i++) {
if (nums[i] == to + 1) {
to++;
} else {
list.add(getRange(start, to));
start = to = nums[i];
}
}
list.add(getRange(start, to));
return list;
}
private String getRange(int start, int to) {
return to > start ? start + "->" + to : String.valueOf(to);
}
}