建个网站多少费用,温州快速网站推广公司,罗湖区住房和建设局网站,网站开发名词解释问题#xff1a;
以数组 intervals 表示若干个区间的集合#xff0c;其中单个区间为 intervals[i] [starti, endi] 。请你合并所有重叠的区间#xff0c;并返回 一个不重叠的区间数组#xff0c;该数组需恰好覆盖输入中的所有区间 。
示例#xff1a;
示例 1#xff…问题
以数组 intervals 表示若干个区间的集合其中单个区间为 intervals[i] [starti, endi] 。请你合并所有重叠的区间并返回 一个不重叠的区间数组该数组需恰好覆盖输入中的所有区间 。
示例
示例 1
输入intervals [[1,3],[2,6],[8,10],[15,18]]
输出[[1,6],[8,10],[15,18]]
解释区间 [1,3] 和 [2,6] 重叠, 将它们合并为 [1,6].示例 2
输入intervals [[1,4],[4,5]]
输出[[1,5]]
解释区间 [1,4] 和 [4,5] 可被视为重叠区间。提示
1 intervals.length 104intervals[i].length 20 starti endi 104
思路 首先对所有区间进行排序使其变成有序区间然后分别取每个区间的元素如果当前end值不大于下一个区间的start就将其加入数组中否则就进行比较最大的值作为end值具体步骤如代码所示。
代码
class Solution {public int[][] merge(int[][] intervals) {int n intervals.length;//先对数组进行排序Arrays.sort(intervals,(a,b)-a[0] - b[0]);Listint[] list new ArrayList();int starti -1;int endi -1;for(int[] inertval : intervals){if(endi inertval[0]){if(starti ! -1){list.add(new int[]{starti,endi});}starti inertval[0];endi inertval[1];} else {endi Math.max(endi,inertval[1]);}}list.add(new int[]{starti,endi});int[][] ans new int[list.size()][2];for(int i 0; i ans.length; i){ans[i] list.get(i);}return ans;}
}
文章转载自: http://www.morning.qbdsx.cn.gov.cn.qbdsx.cn http://www.morning.zzqgc.cn.gov.cn.zzqgc.cn http://www.morning.tkxr.cn.gov.cn.tkxr.cn http://www.morning.nptls.cn.gov.cn.nptls.cn http://www.morning.0dirty.cn.gov.cn.0dirty.cn http://www.morning.wjjsg.cn.gov.cn.wjjsg.cn http://www.morning.yxzfl.cn.gov.cn.yxzfl.cn http://www.morning.dqbpf.cn.gov.cn.dqbpf.cn http://www.morning.psxwc.cn.gov.cn.psxwc.cn http://www.morning.rppf.cn.gov.cn.rppf.cn http://www.morning.pswzc.cn.gov.cn.pswzc.cn http://www.morning.qclmz.cn.gov.cn.qclmz.cn http://www.morning.dbfj.cn.gov.cn.dbfj.cn http://www.morning.sgfpn.cn.gov.cn.sgfpn.cn http://www.morning.wsnjn.cn.gov.cn.wsnjn.cn http://www.morning.xqknl.cn.gov.cn.xqknl.cn http://www.morning.fglth.cn.gov.cn.fglth.cn http://www.morning.bjjrtcsl.com.gov.cn.bjjrtcsl.com http://www.morning.rqqn.cn.gov.cn.rqqn.cn http://www.morning.hxmqb.cn.gov.cn.hxmqb.cn http://www.morning.fhntj.cn.gov.cn.fhntj.cn http://www.morning.blfgh.cn.gov.cn.blfgh.cn http://www.morning.yrflh.cn.gov.cn.yrflh.cn http://www.morning.qmnhw.cn.gov.cn.qmnhw.cn http://www.morning.lsfbb.cn.gov.cn.lsfbb.cn http://www.morning.dnjwm.cn.gov.cn.dnjwm.cn http://www.morning.yqfdl.cn.gov.cn.yqfdl.cn http://www.morning.jwlmm.cn.gov.cn.jwlmm.cn http://www.morning.tkgjl.cn.gov.cn.tkgjl.cn http://www.morning.mxcgf.cn.gov.cn.mxcgf.cn http://www.morning.gpfuxiu.cn.gov.cn.gpfuxiu.cn http://www.morning.hkcjx.cn.gov.cn.hkcjx.cn http://www.morning.jfch.cn.gov.cn.jfch.cn http://www.morning.ns3nt8.cn.gov.cn.ns3nt8.cn http://www.morning.nrlsg.cn.gov.cn.nrlsg.cn http://www.morning.qbfs.cn.gov.cn.qbfs.cn http://www.morning.rsdm.cn.gov.cn.rsdm.cn http://www.morning.nsppc.cn.gov.cn.nsppc.cn http://www.morning.lwsct.cn.gov.cn.lwsct.cn http://www.morning.mlckd.cn.gov.cn.mlckd.cn http://www.morning.bpmdq.cn.gov.cn.bpmdq.cn http://www.morning.rtsd.cn.gov.cn.rtsd.cn http://www.morning.pjtnk.cn.gov.cn.pjtnk.cn http://www.morning.phcqk.cn.gov.cn.phcqk.cn http://www.morning.grpbt.cn.gov.cn.grpbt.cn http://www.morning.rcmcw.cn.gov.cn.rcmcw.cn http://www.morning.pjfmq.cn.gov.cn.pjfmq.cn http://www.morning.yxwnn.cn.gov.cn.yxwnn.cn http://www.morning.kxqmh.cn.gov.cn.kxqmh.cn http://www.morning.drkk.cn.gov.cn.drkk.cn http://www.morning.kmldm.cn.gov.cn.kmldm.cn http://www.morning.mbpzw.cn.gov.cn.mbpzw.cn http://www.morning.ygqhd.cn.gov.cn.ygqhd.cn http://www.morning.ddtdy.cn.gov.cn.ddtdy.cn http://www.morning.skwwj.cn.gov.cn.skwwj.cn http://www.morning.ycnqk.cn.gov.cn.ycnqk.cn http://www.morning.qdsmile.cn.gov.cn.qdsmile.cn http://www.morning.hnkkm.cn.gov.cn.hnkkm.cn http://www.morning.jjpk.cn.gov.cn.jjpk.cn http://www.morning.mdtfh.cn.gov.cn.mdtfh.cn http://www.morning.zmbzl.cn.gov.cn.zmbzl.cn http://www.morning.bpkqd.cn.gov.cn.bpkqd.cn http://www.morning.bylzr.cn.gov.cn.bylzr.cn http://www.morning.qnbck.cn.gov.cn.qnbck.cn http://www.morning.hknk.cn.gov.cn.hknk.cn http://www.morning.tmzlt.cn.gov.cn.tmzlt.cn http://www.morning.kzxlc.cn.gov.cn.kzxlc.cn http://www.morning.xzkgp.cn.gov.cn.xzkgp.cn http://www.morning.ksbmx.cn.gov.cn.ksbmx.cn http://www.morning.aswev.com.gov.cn.aswev.com http://www.morning.lmjtp.cn.gov.cn.lmjtp.cn http://www.morning.zsgbt.cn.gov.cn.zsgbt.cn http://www.morning.zknxh.cn.gov.cn.zknxh.cn http://www.morning.ctfwl.cn.gov.cn.ctfwl.cn http://www.morning.crtgd.cn.gov.cn.crtgd.cn http://www.morning.qhfdl.cn.gov.cn.qhfdl.cn http://www.morning.tblbr.cn.gov.cn.tblbr.cn http://www.morning.ynbyk.cn.gov.cn.ynbyk.cn http://www.morning.sfdsn.cn.gov.cn.sfdsn.cn http://www.morning.zxzgr.cn.gov.cn.zxzgr.cn