欧美1区2区3区激情无套,两个女人互添下身视频在线观看,久久av无码精品人妻系列,久久精品噜噜噜成人,末发育娇小性色xxxx

題解 | #合并區(qū)間#

合并區(qū)間

http://fangfengwang8.cn/practice/69f4e5b7ad284a478777cb2a17fb5e6a

/**
 * struct Interval {
 *	int start;
 *	int end;
 *	Interval(int s, int e) : start(start), end(e) {}
 * };
 */
#include <vector>
class Solution {
public:
    /**
     * 代碼中的類(lèi)名、方法名、參數(shù)名已經(jīng)指定,請(qǐng)勿修改,直接返回方法規(guī)定的值即可
     *
     * 
     * @param intervals Interval類(lèi)vector 
     * @return Interval類(lèi)vector
     */
    vector<Interval> merge(vector<Interval>& intervals) {
        auto cmp = [](const Interval& a, const Interval& b) {
            return a.start < b.start;
        };
        if (intervals.empty()) {
            return {};
        }
        sort(begin(intervals), end(intervals), cmp);
        vector<Interval> result;
        Interval cur;
        cur.start = intervals[0].start;
        cur.end = intervals[0].end;
        for (int i = 1; i < intervals.size(); ++i) {
            int s = intervals[i].start;
            int e = intervals[i].end;
            if (s <= cur.end) {
                // 重疊
                cur.end = max(cur.end, e);
            } else {
                // 不重疊
                result.emplace_back(cur.start, cur.end);
                cur.start = s;
                cur.end = e;
            }
        }
        result.emplace_back(cur.start, cur.end);
        return result;
    }
};

全部評(píng)論

相關(guān)推薦

大叔叔1:你把自己說(shuō)的話(huà)打碼,所以你想表達(dá)什么
點(diǎn)贊 評(píng)論 收藏
分享
評(píng)論
點(diǎn)贊
收藏
分享

創(chuàng)作者周榜

更多
正在熱議
更多
# 牛油的搬磚plog #
26404次瀏覽 114人參與
# 大學(xué)最后一個(gè)寒假,我想…… #
29031次瀏覽 274人參與
# 一人一個(gè)landing小技巧 #
23696次瀏覽 459人參與
# 運(yùn)營(yíng)每日一題 #
67673次瀏覽 649人參與
# 查收我的offer競(jìng)爭(zhēng)力報(bào)告 #
176617次瀏覽 1066人參與
# 面試被問(wèn)第一學(xué)歷差時(shí)該怎么回答 #
122662次瀏覽 765人參與
# 電網(wǎng)筆面經(jīng)互助 #
31703次瀏覽 317人參與
# 為什么那么多公司毀約 #
163535次瀏覽 1223人參與
# 我在牛愛(ài)網(wǎng)找對(duì)象 #
178477次瀏覽 1339人參與
# 520告白墻 #
18733次瀏覽 325人參與
# 找工作的破防時(shí)刻 #
25657次瀏覽 384人參與
# 實(shí)習(xí)學(xué)不到東西怎么辦? #
203859次瀏覽 2113人參與
# 2023屆毀約公司名單 #
190441次瀏覽 938人參與
# 通信硬件知識(shí)分享 #
25605次瀏覽 460人參與
# 實(shí)習(xí)/項(xiàng)目/競(jìng)賽獎(jiǎng)項(xiàng),哪個(gè)對(duì)找工作更重要? #
80381次瀏覽 1102人參與
# 騰訊音樂(lè)求職進(jìn)展匯總 #
86337次瀏覽 485人參與
# 25屆秋招公司紅黑榜 #
259538次瀏覽 1089人參與
# 如果公司降薪,你會(huì)跳槽嗎? #
65715次瀏覽 515人參與
# 我想象的實(shí)習(xí)vs現(xiàn)實(shí)的實(shí)習(xí) #
277672次瀏覽 2207人參與
# 我發(fā)現(xiàn)一個(gè)規(guī)律 #
3307次瀏覽 31人參與
??途W(wǎng)
??推髽I(yè)服務(wù)