forked from hongtaocai/code_interview
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinsertinterval.java
More file actions
executable file
·38 lines (38 loc) · 1.1 KB
/
insertinterval.java
File metadata and controls
executable file
·38 lines (38 loc) · 1.1 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
/**
* 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> res = new ArrayList<Interval>();
Interval merge = new Interval();
boolean added = false;
for(Interval i : intervals){
if(i.end<newInterval.start){
res.add(i);
}
else if(i.start>newInterval.end){
if(!added){
res.add(newInterval);
added = true;
}
res.add(i);
}
else{
newInterval.start = Math.min(newInterval.start, i.start);
newInterval.end = Math.max(newInterval.end, i.end);
}
}
if(!added){
res.add(newInterval);
}
return res;
}
}