leetcode-----57. 插入区间
Posted 景云
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-----57. 插入区间相关的知识,希望对你有一定的参考价值。
代码
class Solution {
public:
vector<vector<int>> insert(vector<vector<int>>& a, vector<int>& b) {
vector<vector<int>> ans;
int k = 0;
while(k < a.size() && a[k][1] < b[0]) ans.push_back(a[k++]);
if (k < a.size()) {
b[0] = min(b[0], a[k][0]);
while (k < a.size() && a[k][0] <= b[1]) b[1] = max(b[1], a[k++][1]);
}
ans.push_back(b);
while (k < a.size()) ans.push_back(a[k++]);
return ans;
}
};
以上是关于leetcode-----57. 插入区间的主要内容,如果未能解决你的问题,请参考以下文章