Leetcode 57. Insert Interval

文章作者:Tyan
博客:noahsnail.com  |  CSDN  |  简书

1. Description

Insert Interval

2. Solution

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
/**
* 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) {
vector<Interval> result;
int i = 0;
bool inserted = false;
for(i = 0; i < intervals.size(); i++) {
Interval current = intervals[i];
if(current.end < newInterval.start) {
result.push_back(current);
}
else if(newInterval.end < current.start) {
result.push_back(newInterval);
inserted = true;
break;
}
else {
newInterval.start = min(current.start, newInterval.start);
newInterval.end = max(current.end, newInterval.end);
}
}
if(!inserted) {
result.push_back(newInterval);
}
for(i = i; i < intervals.size(); i++) {
result.push_back(intervals[i]);
}
return result;
}
};

Reference

  1. https://leetcode.com/problems/insert-interval/description/
如果有收获,可以请我喝杯咖啡!