给定两个由一些 闭区间 组成的列表,firstList 和 secondList ,其中 firstList[i] = [starti, endi] 而 secondList[j] = [startj, endj] 。每个区间列表都是成对 不相交 的,并且 已经排序 。
返回这 两个区间列表的交集。 形式上,闭区间 [a, b](其中 a <= b)表示实数 x 的集合,而 a <= x <= b 。
两个闭区间的 交集 是一组实数,要么为空集,要么为闭区间。例如,[1, 3] 和 [2, 4] 的交集为 [2, 3] 。
class Solution {
public:
vector<vector<int>> intervalIntersection(vector<vector<int>>& firstList, vector<vector<int>>& secondList) {
vector<vector<int>> ans;
if(firstList.size() == 0 || secondList.size() == 0)
return ans;
int fir = 0, sec = 0;
while(fir <= firstList.size() - 1 && sec <= secondList.size() - 1) {
int begin = max(firstList[fir][0],secondList[sec][0]);
int end = min(firstList[fir][1], secondList[sec][1]);
if(begin <= end) {
ans.push_back({begin, end});
}
if(end == firstList[fir][1])
++fir;
else
++sec;
}
return ans;
}
};
|