首页 > 其他 > 详细

LeetCode OJ:Merge Intervals(合并区间)

时间:2016-01-13 00:28:10      阅读:187      评论:0      收藏:0      [点我收藏+]

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].

看起来感觉不像hard类型的题目,不过要注意的一点是这里给出的数据不一定会像上面这样按照顺序来进行排序,所以处理前首先要按照一定的规则处理一下,写一个functor来进行比较,用struct即可,排序后这个范围就很好确定了,代码如下所示:

 1 class Solution {
 2 public:
 3     vector<Interval> merge(vector<Interval>& intervals) {
 4         int p = 0, q = 1;
 5         std::sort(intervals.begin(), intervals.end(), comp);
 6         vector<Interval> ret;
 7         while(q < intervals.size()){
 8             if(intervals[p].end < intervals[q].start){ //这个范围需要记录下来
 9                 ret.push_back(intervals[p]);
10                 p = q;
11                 q++;
12             }else{
13                 if(intervals[p].end < intervals[q].end) //根据条件才更新范围  
14                     intervals[p].end = intervals[q].end;
15                 q++;
16             }
17         }
18         if(p < intervals.size())
19             ret.push_back(intervals[p]);
20         return ret;
21     }
22 
23 
24     struct myComparator{
25         bool operator()(const Interval & i, const Interval & j){
26             return i.start < j.start;
27         }
28     }comp;
29 };

 

LeetCode OJ:Merge Intervals(合并区间)

原文:http://www.cnblogs.com/-wang-cheng/p/5115746.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!