LC436. Find Right Interval

Posted betaa

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LC436. Find Right Interval相关的知识,希望对你有一定的参考价值。

技术图片

分析:求一个区间最邻近的右边的区间在数组中的索引位置,右侧区间头要大于等于左侧区间尾。用map存区间头对应的区间索引。

标准库有map自己的lower_bound函数,返回大于等于key的第一个值的iteraotr。找右侧最邻近区间就是找 lower_bound(intervals[i][1]) .

class Solution {
public:
    vector<int> findRightInterval(vector<vector<int>>& intervals) {
        map<int, int> hash;
        vector<int> res;
        int n = intervals.size();
        for (int i = 0; i < n; ++i) {
            hash[intervals[i][0]] = i;
        }
        for (auto& in : intervals) {
            auto it = hash.lower_bound(in[1]);
            if (it == hash.end()) res.push_back(-1);
            else res.push_back(it->second);
        }
        return res;
    }
};

 

以上是关于LC436. Find Right Interval的主要内容,如果未能解决你的问题,请参考以下文章

436. Find Right Interval

LeetCode 436. Find Right Interval

[LeetCode]436 Find Right Interval

LeetCode 436. Find Right Interval

[Leetcode] Binary search--436. Find Right Interval

[LC] 199. Binary Tree Right Side View