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

你可能感兴趣的文章
mysql5.7命令总结
查看>>
mysql5.7安装
查看>>
mysql5.7性能调优my.ini
查看>>
MySQL5.7新增Performance Schema表
查看>>
Mysql5.7深入学习 1.MySQL 5.7 中的新增功能
查看>>
Webpack 之 basic chunk graph
查看>>
Mysql5.7版本单机版my.cnf配置文件
查看>>
mysql5.7的安装和Navicat的安装
查看>>
mysql5.7示例数据库_Linux MySQL5.7多实例数据库配置
查看>>
Mysql8 数据库安装及主从配置 | Spring Cloud 2
查看>>
mysql8 配置文件配置group 问题 sql语句group不能使用报错解决 mysql8.X版本的my.cnf配置文件 my.cnf文件 能够使用的my.cnf配置文件
查看>>
MySQL8.0.29启动报错Different lower_case_table_names settings for server (‘0‘) and data dictionary (‘1‘)
查看>>
MYSQL8.0以上忘记root密码
查看>>
Mysql8.0以上重置初始密码的方法
查看>>
mysql8.0新特性-自增变量的持久化
查看>>
Mysql8.0注意url变更写法
查看>>
Mysql8.0的特性
查看>>
MySQL8修改密码报错ERROR 1819 (HY000): Your password does not satisfy the current policy requirements
查看>>
MySQL8修改密码的方法
查看>>
Mysql8在Centos上安装后忘记root密码如何重新设置
查看>>