博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
LeetCode 57: Insert Interval
阅读量:5934 次
发布时间:2019-06-19

本文共 1149 字,大约阅读时间需要 3 分钟。

/** * Definition for an interval. * public class Interval { *     int start; *     int end; *     Interval() { start = 0; end = 0; } *     Interval(int s, int e) { start = s; end = e; } * } */class Solution {    public List
insert(List
intervals, Interval newInterval) { List
result = new ArrayList<>(); int i = 0; while (i < intervals.size() && intervals.get(i).end < newInterval.start) { result.add(intervals.get(i++)); } while (i < intervals.size() && intervals.get(i).start <= newInterval.end) { newInterval = new Interval(Math.min(newInterval.start, intervals.get(i).start), Math.max(newInterval.end, intervals.get(i).end)); i++; } result.add(newInterval); while (i < intervals.size()) { result.add(intervals.get(i++)); } return result; }}

 

Since the input is ordered and not overlapped intervals. It is OK to have this kind of simply implementation.

转载于:https://www.cnblogs.com/shuashuashua/p/7417917.html

你可能感兴趣的文章
转:Log4j使用
查看>>
CSS3 box-sizing 属性
查看>>
【转】java-String中的 intern()
查看>>
用户登录系统之后,禁止用户返回到登录页面
查看>>
java.lang.NoClassDefFoundError: javax/mail/Authenticator
查看>>
数据库多对多型数据表分类设计
查看>>
深入Activity,Activity启动模式LaunchMode完全解析
查看>>
黄聪:iis7.5 偶尔出现500服务器错误-内部服力器错误
查看>>
CSS3与页面布局学习总结
查看>>
驱动的境界
查看>>
sql 转 markdown
查看>>
Noise,Error,wighted pocket Algorithm
查看>>
hive内部表、外部表、分区表、视图
查看>>
人工智能--学术会议排名
查看>>
轻量级C#编辑器RoslynPad
查看>>
[Asp.net mvc]OutputCacheAttribute
查看>>
html布局小练习(百度首页)
查看>>
lmdb简介——结合MVCC的B+树嵌入式数据库
查看>>
浏览器对localstorage的支持情况以及localstorage在saas系统中的应用实践思考
查看>>
rsync常用参数详解
查看>>