码迷,mamicode.com
首页 > 其他好文 > 详细

56. Merge Intervals

时间:2019-01-18 17:25:46      阅读:162      评论:0      收藏:0      [点我收藏+]

标签:com   ati   ping   star   ide   pre   col   return   math   

Given a collection of intervals, merge all overlapping intervals.

Example 1:

Input: [[1,3],[2,6],[8,10],[15,18]]
Output: [[1,6],[8,10],[15,18]]
Explanation: Since intervals [1,3] and [2,6] overlaps, merge them into [1,6].
Example 2:

Input: [[1,4],[4,5]]
Output: [[1,5]]
Explanation: Intervals [1,4] and [4,5] are considered overlapping.

/**
 * Definition for an interval.
 * public class Interval {
 *     int start;
 *     int end;
 *     Interval() { start = 0; end = 0; }
 *     Interval(int s, int e) { start = s; end = e; }
 * }
 */
class Solution {
    public List<Interval> merge(List<Interval> intervals) {
        Collections.sort(intervals,new Comparator<Interval>(){  
            public int compare(Interval int1,Interval int2){
                return int1.start - int2.start ;
            }
        });
        if(intervals.size()<2) return intervals;
        List<Interval> res = new ArrayList<Interval>();
        Interval inte = intervals.get(0);
        for(int i = 0 ;i<intervals.size();i++){
            Interval temp = intervals.get(i);
            if(inte.end>=temp.start){
                inte.end = Math.max(inte.end,temp.end);
            }else
            {
                res.add(inte);
                inte = temp;
            }
        }
        res.add(inte);
        return res;
    }
}

56. Merge Intervals

标签:com   ati   ping   star   ide   pre   col   return   math   

原文地址:https://www.cnblogs.com/a1225234/p/10288414.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!