博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
228. Summary Ranges
阅读量:5088 次
发布时间:2019-06-13

本文共 754 字,大约阅读时间需要 2 分钟。

Given a sorted integer array without duplicates, return the summary of its ranges.

For example, given [0,1,2,4,5,7], return ["0->2","4->5","7"].

Credits:

Special thanks to  for adding this problem and creating all test cases.

因为是排序好的数组,所以只需每次向前扫描查找下一个数即可。

public class Solution {

  public List<String> summaryRanges(int[] nums) {
    List<String> result = new ArrayList<>();
    for (int i = 0; i < nums.length; i++) {
      int j = 0;
      while (i + j + 1 < nums.length && nums[i + j] == nums[i + j + 1] - 1) {
        j++;
      }
      if (j == 0) {
        result.add("" + nums[i]);
      } else {
        result.add(nums[i] + "->" + nums[i + j]);
      }
      i += j;
    }
    return result;
  }
}

转载于:https://www.cnblogs.com/shini/p/4603600.html

你可能感兴趣的文章
【2.3】初始Django Shell
查看>>
Linux(Centos)之安装Redis及注意事项
查看>>
重构视角(摘抄)
查看>>
【H5 音乐播放实例】第一节 音乐详情页制作(1)
查看>>
listView注意的地方
查看>>
Filter案例
查看>>
装饰器与子类化
查看>>
学习笔记(六)——数据表的查找功能、数据行、数据列的综合应用
查看>>
Java集合中List的Sort()方法进行排序
查看>>
JS制作一个通用的商城版历史浏览记录
查看>>
浴谷金秋线上集训营 T11738 伪神(树链剖分)
查看>>
javascript基础01
查看>>
iOS开发个人独立博客收集
查看>>
JSONArray和JSONObject的简单使用
查看>>
北京大片《全球热死》正在上映!
查看>>
多进程复习
查看>>
Centos 安装golang beego
查看>>
JavaScript内置对象 以及和 内置对象相关的语法
查看>>
framespacing="10"和border="10"在frameSet中有什么区别?
查看>>
JavaScript中的字符串连接
查看>>