-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInsert Interval.cpp
More file actions
36 lines (36 loc) · 929 Bytes
/
Copy pathInsert Interval.cpp
File metadata and controls
36 lines (36 loc) · 929 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
32
33
34
35
36
/**
* Definition for an interval.
* struct Interval {
* int start;
* int end;
* Interval() : start(0), end(0) {}
* Interval(int s, int e) : start(s), end(e) {}
* };
*/
class Solution {
public:
vector<Interval> insert(vector<Interval>& intervals, Interval newInterval) {
// Start typing your C/C++ solution below
// DO NOT write int main() function
int i = 0;
vector<Interval> r;
while (i < intervals.size()) {
if (intervals[i].start > newInterval.end) {
break;
}
if (intervals[i].end < newInterval.start) {
r.push_back(intervals[i]);
} else {
newInterval.start = min(newInterval.start, intervals[i].start);
newInterval.end = max(newInterval.end, intervals[i].end);
}
i++;
}
r.push_back(newInterval);
while (i < intervals.size()) {
r.push_back(intervals[i]);
i++;
}
return r;
}
};