摘要:題目要求給定一組順序排列且相互之間沒(méi)有重疊的區(qū)間,輸入一個(gè)區(qū)間,將它插入到當(dāng)前的區(qū)間數(shù)組中,并且將需要合并的區(qū)間合并,之后返回插入并且合并后的區(qū)間。我們將這三個(gè)類型的區(qū)間分別標(biāo)注為類型,類型,類型。
題目要求
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].
給定一組順序排列且相互之間沒(méi)有重疊的區(qū)間,輸入一個(gè)區(qū)間,將它插入到當(dāng)前的區(qū)間數(shù)組中,并且將需要合并的區(qū)間合并,之后返回插入并且合并后的區(qū)間。
思路和代碼任何一個(gè)區(qū)間數(shù)組中的區(qū)間可以劃分為三個(gè)類型,位于需要被合并的區(qū)間的前面的區(qū)間,需要被合并的區(qū)間,位于需要被合并的區(qū)間后面的區(qū)間。我們將這三個(gè)類型的區(qū)間分別標(biāo)注為類型1,類型2,類型3。
區(qū)間類型1: 當(dāng)前區(qū)間的最大值小于插入?yún)^(qū)間的最大值
區(qū)間類型3: 當(dāng)前區(qū)間的最小值大于插入?yún)^(qū)間的最大值
區(qū)間類型2: 判斷比較復(fù)雜,可以通過(guò)非區(qū)間類型1和區(qū)間類型3來(lái)歸類。在遇到區(qū)間類型二時(shí),要更新插入?yún)^(qū)間的最大值和最小值
代碼實(shí)現(xiàn)如下:
方法一:
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; }
文章版權(quán)歸作者所有,未經(jīng)允許請(qǐng)勿轉(zhuǎn)載,若此文章存在違規(guī)行為,您可以聯(lián)系管理員刪除。
轉(zhuǎn)載請(qǐng)注明本文地址:http://systransis.cn/yun/70145.html
摘要:?jiǎn)栴}描述分析這道題的關(guān)鍵在于理解問(wèn)題,抽取原型,理解中間可以部分如何界定,以及非部分如何進(jìn)行追加。需要注意的是循環(huán)到最后一個(gè)元素和在最后一個(gè)元素的區(qū)別。 問(wèn)題描述: 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...
摘要:我們只要把所有和該有重疊的合并到一起就行了。最后把前半部分的列表,合并后的大和后半部分的列表連起來(lái),就是結(jié)果了。 Merge Intervals 最新更新請(qǐng)見(jiàn) 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....
摘要:題目要求假設(shè)一個(gè)二維的整數(shù)數(shù)組中每一行表示一個(gè)區(qū)間,每一行的第一個(gè)值表示區(qū)間的左邊界,第二個(gè)值表示區(qū)間的右邊界。 題目要求 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 ...
閱讀 1464·2023-04-25 17:18
閱讀 1894·2021-10-27 14:18
閱讀 2135·2021-09-09 09:33
閱讀 1852·2019-08-30 15:55
閱讀 2025·2019-08-30 15:53
閱讀 3449·2019-08-29 16:17
閱讀 3436·2019-08-26 13:57
閱讀 1739·2019-08-26 13:46