Skip to content

Latest commit

 

History

History
72 lines (57 loc) · 1.38 KB

README.md

File metadata and controls

72 lines (57 loc) · 1.38 KB

汇总区间

难度:简单

https://leetcode-cn.com/problems/summary-ranges/

题目

给定一个 无重复元素 的 **有序 **整数数组 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"

解题

/**
 * 一次遍历
 * @desc 时间复杂度 O(N)  空间复杂度 O(1)
 * @param nums
 * @returns
 */
export function summaryRanges(nums: number[]): string[] {
  const result: string[] = []
  let i = 0
  const len = nums.length
  while (i < len) {
    const low = i
    i++
    while (i < len && nums[i] === nums[i - 1] + 1)
      i++

    const high = i - 1

    if (low < high)
      result.push(`${nums[low]}->${nums[high]}`)
    else
      result.push(`${nums[low]}`)
  }

  return result
}