题解 | #插入区间#

插入区间

http://www.nowcoder.com/practice/1d784b5472ab4dde88ea2331d16ee909

/**
 * struct Interval {
 *	int start;
 *	int end;
 *	Interval(int s, int e) : start(start), end(e) {}
 * };
 */
class Solution {
public:
    /**
     * 代码中的类名、方法名、参数名已经指定,请勿修改,直接返回方法规定的值即可
     *
     * 
     * @param Intervals Interval类vector 
     * @param newInterval Interval类 
     * @return Interval类vector
     */
    static bool cmp(Interval a, Interval b) {
        if(a.start != b.start)
            return a.start < b.start;
        return a.end < b.end;
    }
    vector<Interval> insertInterval(vector<Interval>& Intervals, Interval newInterval) {
        // write code here
        vector<Interval> res;
        Intervals.push_back(newInterval);
        sort(Intervals.begin(), Intervals.end(), cmp); // 排序
        int pre_s = Intervals[0].start;
        int pre_e = Intervals[0].end;
        res.push_back(Intervals[0]);
        for(int i = 1; i < Intervals.size(); i++) {
            int s = Intervals[i].start;
            int e = Intervals[i].end;
            // 分三种情况考虑,同时更新pre_s和pre_e
            if(pre_e < s ) {
                res.push_back(Intervals[i]);
                pre_s = s;
                pre_e = e;
            }
            else if(s <= pre_e && e >= pre_e) {
                res.pop_back();
                Intervals[i].start = pre_s;
                pre_e = e;
                res.push_back(Intervals[i]);
            }
        }
        return res;
    }
};
全部评论
这情况没有判断全吧
点赞 回复 分享
发布于 2022-02-10 17:03

相关推荐

昨天 14:22
门头沟学院 Java
大厂 测开 24*16离家近的事业编(大概只有大厂的1/4) 硕士
点赞 评论 收藏
分享
我是小红是我:学校换成中南
点赞 评论 收藏
分享
Noel_:中石油是这样的 哥们侥幸混进免笔试名单 一看给我吓尿了
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务