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

leetcode 合并区间

时间:2014-07-18 10:26:09      阅读:188      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   使用   art   io   

使用最简单的排序方法;

 1 /**
 2  * Definition for an interval.
 3  * public class Interval {
 4  *     int start;
 5  *     int end;
 6  *     Interval() { start = 0; end = 0; }
 7  *     Interval(int s, int e) { start = s; end = e; }
 8  * }
 9  */
10 public class Solution {
11     public List<Interval> merge(List<Interval> intervals) {
12         if(intervals.size()<=1) return intervals;
13         ArrayList<Interval> arry=new ArrayList<Interval>();
14         Comparator<Interval> cmp=new Comparator<Interval>(){
15             public int compare(Interval v1,Interval v2)
16             {
17                 return v1.start-v2.start;
18             }
19                 
20         
21             
22         };
23             Collections.sort(intervals,cmp);
24             Interval pre=intervals.get(0);
25             for(int i=1;i<intervals.size();i++)
26             {
27                 Interval cur=intervals.get(i);
28                 if(cur.start<=pre.end)
29                 {
30                   pre=new Interval(pre.start,Math.max(cur.end,pre.end));//merge
31                   
32                 }
33                 else
34                 {
35                     arry.add(pre);
36                     pre=cur;
37                 }
38                 
39             }
40             arry.add(pre);
41             return arry;
42            
43     }
44 }

leetcode 合并区间,布布扣,bubuko.com

leetcode 合并区间

标签:style   blog   color   使用   art   io   

原文地址:http://www.cnblogs.com/hansongjiang/p/3852593.html

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