摘要:题目要求给定一组顺序排列且相互之间没有重叠的区间,输入一个区间,将它插入到当前的区间数组中,并且将需要合并的区间合并,之后返回插入并且合并后的区间。我们将这三个类型的区间分别标注为类型,类型,类型。
题目要求
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: Given intervals [1,3],[6,9], insert and merge [2,5] in as [1,5],[6,9]. Example 2: Given [1,2],[3,5],[6,7],[8,10],[12,16], insert and merge [4,9] in as [1,2],[3,10],[12,16]. This is because the new interval [4,9] overlaps with [3,5],[6,7],[8,10].
给定一组顺序排列且相互之间没有重叠的区间,输入一个区间,将它插入到当前的区间数组中,并且将需要合并的区间合并,之后返回插入并且合并后的区间。
思路和代码任何一个区间数组中的区间可以划分为三个类型,位于需要被合并的区间的前面的区间,需要被合并的区间,位于需要被合并的区间后面的区间。我们将这三个类型的区间分别标注为类型1,类型2,类型3。
区间类型1: 当前区间的最大值小于插入区间的最大值
区间类型3: 当前区间的最小值大于插入区间的最大值
区间类型2: 判断比较复杂,可以通过非区间类型1和区间类型3来归类。在遇到区间类型二时,要更新插入区间的最大值和最小值
代码实现如下:
方法一:
public Listinsert(List intervals, Interval newInterval) { List result = new ArrayList (); int index = 0; while(index 方法二:
public Listinsert2(List intervals, Interval newInterval) { List result = new ArrayList (); for(Interval temp : intervals){ if(newInterval==null || temp.end < newInterval.start){ result.add(temp); }else if(temp.start > newInterval.end){ result.add(newInterval); result.add(temp); newInterval = null; }else{ newInterval.start = Math.min(newInterval.start, temp.start); newInterval.end = Math.max(newInterval.end, temp.end); } } return result; }
文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。
转载请注明本文地址:https://www.ucloud.cn/yun/70145.html
摘要:问题描述分析这道题的关键在于理解问题,抽取原型,理解中间可以部分如何界定,以及非部分如何进行追加。需要注意的是循环到最后一个元素和在最后一个元素的区别。 问题描述: Given a set of non-overlapping intervals, insert a new interval into the intervals (merge if necessary). You m...
57. Insert Interval 题目链接:https://leetcode.com/problems... public class Solution { public List insert(List intervals, Interval newInterval) { // skip intervals which not overlap with new on...
摘要:我们只要把所有和该有重叠的合并到一起就行了。最后把前半部分的列表,合并后的大和后半部分的列表连起来,就是结果了。 Merge Intervals 最新更新请见 https://yanjia.me/zh/2019/02/... Given a collection of intervals, merge all overlapping intervals.For example, Gi...
Problem 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....
摘要:题目要求假设一个二维的整数数组中每一行表示一个区间,每一行的第一个值表示区间的左边界,第二个值表示区间的右边界。 题目要求 Given a set of intervals, for each of the interval i, check if there exists an interval j whose start point is bigger than or equal ...
阅读 1375·2023-04-25 17:18
阅读 1841·2021-10-27 14:18
阅读 2082·2021-09-09 09:33
阅读 1813·2019-08-30 15:55
阅读 1996·2019-08-30 15:53
阅读 3406·2019-08-29 16:17
阅读 3402·2019-08-26 13:57
阅读 1696·2019-08-26 13:46