LeetCode - 228. 汇总区间

描述

给定一个无重复元素的有序整数数组 nums 。

返回 恰好覆盖数组中所有数字 的 最小有序 区间范围列表。也就是说,nums 的每个元素都恰好被某个区间范围所覆盖,并且不存在属于某个范围但不属于 nums 的数字 x 。

列表中的每个区间范围 [a,b] 应该按如下格式输出:

"a->b" ,如果 a != b
"a" ,如果 a == b
 

示例 1:

输入:nums = [0,1,2,4,5,7]
输出:["0->2","4->5","7"]
解释:区间范围是:
[0,2] --> "0->2"
[4,5] --> "4->5"
[7,7] --> "7"
示例 2:

输入:nums = [0,2,3,4,6,8,9]
输出:["0","2->4","6","8->9"]
解释:区间范围是:
[0,0] --> "0"
[2,4] --> "2->4"
[6,6] --> "6"
[8,9] --> "8->9"
示例 3:

输入:nums = []
输出:[]
示例 4:

输入:nums = [-1]
输出:["-1"]
示例 5:

输入:nums = [0]
输出:["0"]
 

提示:

0 <= nums.length <= 20
-231 <= nums[i] <= 231 - 1
nums 中的所有值都 互不相同
nums 按升序排列

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/summary-ranges/

求解

   class Solution {
    public:
        // 第一版本,代码比较冗余
        vector<string> summaryRanges_1e(const vector<int> &nums) {
            vector<string> res;
            if (nums.empty()) {
                return res;
            }
            int i = 0;
            int j = i + 1;
            const int n = nums.size();
            while (i < n && j < n) {
                // 连续区间,继续递增
                if (nums[j] == nums[j - 1] + 1) {
                    ++j;
                    continue;
                }

                // 连续区间终止
                if (nums[i] == nums[j - 1]) {
                    // 连续区间只有一个值
                    res.emplace_back(std::to_string(nums[i]));
                    i = j;
                    ++j;
                    continue;
                }
                // 连续区间是一个有效区间
                res.emplace_back(std::to_string(nums[i]) + "->" + std::to_string(nums[j - 1]));
                i = j;
                ++j;
            }

            // 遍历结束,处理最后一个区间
            if (nums[i] == nums[j - 1]) {
                // 连续区间只有一个值
                res.emplace_back(std::to_string(nums[i]));
                return res;
            }
            res.emplace_back(std::to_string(nums[i]) + "->" + std::to_string(nums[j - 1]));
            return res;
        }

        // 第二版本,代码精简版,参考官方题解
        vector<string> summaryRanges(const vector<int> &nums) {
            vector<string> res;
            int i = 0;
            const int n = nums.size();
            while (i < n) {
                int low = i;
                ++i;
                while (i < n && (nums[i] == nums[i - 1] + 1)) {
                    ++i;
                }
                int high = i - 1;
                string str = std::to_string(nums[low]);
                if (low < high) {
                    str.append("->");
                    str.append(std::to_string(nums[high]));
                }
                res.push_back(std::move(str));
            }
            return res;
        }
    };

猜你喜欢

转载自blog.csdn.net/u010323563/article/details/112426886