面试经典-29- 插入区间

题目

给你一个 无重叠的 ,按照区间起始端点排序的区间列表。

在列表中插入一个新的区间,你需要确保列表中的区间仍然有序且不重叠(如果有必要的话,可以合并区间)。

示例 1:

输入:intervals = [[1,3],[6,9]], newInterval = [2,5]

输出:[[1,5],[6,9]]

java 复制代码
class Solution {
    public int[][] insert(int[][] intervals, int[] newInterval) {
        int[][] temp = new int[intervals.length + 1][2];
        for (int i = 0; i < intervals.length; i++) {
            temp[i] = intervals[i];
        }
        temp[intervals.length] = newInterval;
        Arrays.sort(temp, new Comparator<int[]>() {
            @Override
            public int compare(int[] o1, int[] o2) {
                return o1[0] - o2[0];
            }
        });

        // [[1,2],[3,5],[4,8],[6,7],[8,10],[12,16]]
        List<int[]> res = new ArrayList<>();
        int start = temp[0][0];
        int end = temp[0][1];
        for (int i = 1; i < temp.length; i++) {
            if (temp[i][0] > end) {
                res.add(new int[] { start, end });
                start = temp[i][0];
                end = temp[i][1];
            } else {
                end = Math.max(end,temp[i][1]);
            }
        }
        res.add(new int[] { start, end });
        int[][] result = new int[res.size()][2];
        for (int i = 0; i < res.size(); i++) {
            result[i] = res.get(i);
        }
        return result;
    }
}
相关推荐
quaer32 分钟前
香农插值(sinc插值)实现
大数据·开发语言·c++·算法·matlab
空雲.36 分钟前
LQ24fresh
算法
小鸡毛程序员40 分钟前
B4004 [GESP202406 三级] 寻找倍数
c++·算法
星沁城1 小时前
跳跃表(跳表)是什么
数据结构·c++·算法
Wils0nEdwards1 小时前
Leetcode 查找和最小的 K 对数字
linux·算法·leetcode
雾月551 小时前
LeetCode 3146 两个字符串的排列差
java·数据结构·算法·leetcode
蹉跎x1 小时前
力扣209. 长度最小的子数组
数据结构·算法·leetcode
Wang's Blog2 小时前
数据结构与算法之动态规划: LeetCode 3105. 最长的严格递增或递减子数组 (Ts版)
算法·leetcode
arin8762 小时前
【数据结构】树链刨分
数据结构·算法
sjsjs112 小时前
【数据结构-单调队列】力扣1438. 绝对差不超过限制的最长连续子数组
数据结构·算法·leetcode