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

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

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.

1 public class Solution { 2     public ArrayList
insert(ArrayList
intervals, Interval newInterval) { 3 ArrayList
res = new ArrayList
(); 4 if(intervals.size()==0){ 5 res.add(newInterval); 6 return res; 7 } 8 for(int i=0;i
View Code

 

转载于:https://www.cnblogs.com/krunning/p/3538754.html

你可能感兴趣的文章
设计模式六大原则(5):迪米特法则
查看>>
对Feature的操作插入添加删除
查看>>
javascript String
查看>>
ecshop 系统信息在哪个页面
查看>>
【转】码云source tree 提交超过100m 为什么大文件推不上去
查看>>
Oracle数据库的增、删、改、查
查看>>
MySql执行分析
查看>>
git使用中的问题
查看>>
yaml文件 .yml
查看>>
linux字符集修改
查看>>
phpcms 添加自定义表单 留言
查看>>
mysql 优化
查看>>
读书笔记 ~ Nmap渗透测试指南
查看>>
WCF 配置文件
查看>>
动态调用WCF服务
查看>>
oracle导出/导入 expdp/impdp
查看>>
类指针
查看>>
css修改滚动条样式
查看>>
2018.11.15 Nginx服务器的使用
查看>>
Kinect人机交互开发实践
查看>>