Leetcode 57. Insert Interval
2018-12-08 本文已影响1人
SnailTyan
文章作者:Tyan
博客:noahsnail.com | CSDN | 简书
1. Description
Insert Interval2. Solution
/**
* 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;
}
};