forked from yuanx/leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsertInterval.java
More file actions
47 lines (37 loc) · 1.17 KB
/
InsertInterval.java
File metadata and controls
47 lines (37 loc) · 1.17 KB
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
37
38
39
40
41
42
43
44
45
46
47
/**
* Definition for an interval.
* public class Interval {
* int start;
* int end;
* Interval() { start = 0; end = 0; }
* Interval(int s, int e) { start = s; end = e; }
* }
*/
public class Solution {
public ArrayList<Interval> insert(ArrayList<Interval> intervals, Interval newInterval) {
// Start typing your Java solution below
// DO NOT write main() function
ArrayList<Interval> re = new ArrayList<Interval>();
int len = intervals.size();
int i = 0;
while(i<len){
Interval temp = intervals.get(i);
if(temp.end < newInterval.start)
re.add(temp);
else if(temp.start>newInterval.end){
break;
}
else{
newInterval.start = Math.min(temp.start,newInterval.start);
newInterval.end = Math.max(temp.end, newInterval.end);
}
i++;
}
re.add(newInterval);
while(i<len){
re.add(intervals.get(i));
i++;
}
return re;
}
}