Given a collection of intervals, merge all overlapping intervals.
For example,
Given [1,3],[2,6],[8,10],[15,18],
return [1,6],[8,10],[15,18].
/**
* Definition for an interval.
* struct Interval {
* int start;
* int end;
* Interval() : start(0), end(0) {}
* Interval(int s, int e) : start(s), end(e) {}
* };
*/
bool cmp(const Interval &a, const Interval &b)
{
return a.start < b.start;
}
class Solution {
public:
vector<Interval> merge(vector<Interval> &intervals) {
sort(intervals.begin(), intervals.end(), cmp);
vector<Interval> res;
if(intervals.empty()) return res;
vector<Interval>::iterator it = intervals.begin();
Interval temp = *it++;
if(it == intervals.end())
res.push_back(temp);
else
{
while(it != intervals.end())
{
while((*it).start <= temp.end && it != intervals.end())
{
temp.end = max(temp.end, (*it).end);
++it;
}
res.push_back(temp);
temp = *it;
}
}
return res;
}
};

本文介绍了一种有效的算法来合并一系列可能存在重叠的区间。通过排序和遍历的方式,该算法可以将所有重叠的区间合并为最小数量的不重叠区间。例如,给定区间 [1,3]、[2,6]、[8,10] 和 [15,18],最终返回合并后的区间 [1,6]、[8,10] 和 [15,18]。
298

被折叠的 条评论
为什么被折叠?



