博客
关于我
LeetCode 57. Insert Interval
阅读量:119 次
发布时间:2019-02-26

本文共 2026 字,大约阅读时间需要 6 分钟。

一 题目

  

Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary).

You may assume that the intervals were initially sorted according to their start times.

Example 1:

Input: intervals = [[1,3],[6,9]], newInterval = [2,5]Output: [[1,5],[6,9]]

Example 2:

Input: intervals = [[1,2],[3,5],[6,7],[8,10],[12,16]], newInterval = [4,8]Output: [[1,2],[3,10],[12,16]]Explanation: Because the new interval [4,8] overlaps with [3,5],[6,7],[8,10]

NOTE: input types have been changed on April 15, 2019. Please reset to default code definition to get new method signature.

二 分析

   hard 级别,题目让我们在一系列非重叠的区间中插入一个新的区间。上个区间的题目:  是合并。这个还要复杂些,因为单纯的没有重合的区域,遍历原来的区间位置,在对应位置直接插入就行,重合的不行,重合的区域遇到多个重合的情况,可能要更新为一个新的区间范围,包含原来的区间,再把新的区间加入到结果集。

     具体实现思路就是循环并合并,for循环现有区间,判断与新插入的Interval 是否重合

  • 在newInterval start前end的
  • 在newInterval end后start的

。不重合直接加入到结果集。重合的取新的区间范围,min,max 分别取最小与最大值。在接着判断下一个元素是否可以合并。

public static void main(String[] args) {		int[][] intervals ={				{1,2},{3,5},{6,7},{8,10},{12,16}		};		int[] newInterval = {4,8};		int[][] res =insert(intervals,newInterval);		System.out.println( JSON.toJSON(res));	}		public static int[][] insert(int[][] intervals, int[] newInterval) {		List
res = new ArrayList
(); for(int i=0;i
newInterval[1]){ res.add(intervals[i] ); } else{//重叠,进行合并更新interval newInterval[0] = Math.min(newInterval[0] ,intervals[i][0]); newInterval[1] = Math.max(newInterval[1], intervals[i][1]); } }//加入最后一个区间 res.add(newInterval); int[][] temp = res.toArray(new int[0][0]); Arrays.sort(temp, new Comparator
(){ @Override public int compare(int[] o1, int[] o2) { // TODO Auto-generated method stub return Integer.compare(o1[0],o2[0]); } }); return temp; }

Runtime: 2 ms, faster than 39.71% of Java online submissions for Insert Interval.

Memory Usage: 41.6 MB, less than 71.88% of Java online submissions for Insert Interval.

最后加了排序,输出可能是乱序的。

因为加了排序,所以时间复杂度O(NlogN). 有时间再看看网上大神是怎么做的。

 

转载地址:http://irdy.baihongyu.com/

你可能感兴趣的文章
mysql-group_concat
查看>>
MySQL-redo日志
查看>>
MySQL-【1】配置
查看>>
MySQL-【4】基本操作
查看>>
Mysql-丢失更新
查看>>
Mysql-事务阻塞
查看>>
Mysql-存储引擎
查看>>
mysql-开启慢查询&所有操作记录日志
查看>>
MySQL-数据目录
查看>>
MySQL-数据页的结构
查看>>
MySQL-架构篇
查看>>
MySQL-索引的分类(聚簇索引、二级索引、联合索引)
查看>>
Mysql-触发器及创建触发器失败原因
查看>>
MySQL-连接
查看>>
mysql-递归查询(二)
查看>>
MySQL5.1安装
查看>>
mysql5.5和5.6版本间的坑
查看>>
mysql5.5最简安装教程
查看>>
mysql5.6 TIME,DATETIME,TIMESTAMP
查看>>
mysql5.6.21重置数据库的root密码
查看>>