博客
关于我
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/

你可能感兴趣的文章
mt_rand
查看>>
mysql -存储过程
查看>>
mysql /*! 50100 ... */ 条件编译
查看>>
mudbox卸载/完美解决安装失败/如何彻底卸载清除干净mudbox各种残留注册表和文件的方法...
查看>>
mysql 1264_关于mysql 出现 1264 Out of range value for column 错误的解决办法
查看>>
mysql 1593_Linux高可用(HA)之MySQL主从复制中出现1593错误码的低级错误
查看>>
mysql 5.6 修改端口_mysql5.6.24怎么修改端口号
查看>>
MySQL 8.0 恢复孤立文件每表ibd文件
查看>>
MySQL 8.0开始Group by不再排序
查看>>
mysql ansi nulls_SET ANSI_NULLS ON SET QUOTED_IDENTIFIER ON 什么意思
查看>>
multi swiper bug solution
查看>>
MySQL Binlog 日志监听与 Spring 集成实战
查看>>
MySQL binlog三种模式
查看>>
multi-angle cosine and sines
查看>>
Mysql Can't connect to MySQL server
查看>>
mysql case when 乱码_Mysql CASE WHEN 用法
查看>>
Multicast1
查看>>
mysql client library_MySQL数据库之zabbix3.x安装出现“configure: error: Not found mysqlclient library”的解决办法...
查看>>
MySQL Cluster 7.0.36 发布
查看>>
Multimodal Unsupervised Image-to-Image Translation多通道无监督图像翻译
查看>>