zoukankan      html  css  js  c++  java
  • leetcode 228: Summary Ranges

    Summary Ranges

    Total Accepted: 511 Total Submissions: 2271

    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"].

    [思路]

    两个指针 start, end.  假设nums[end+1] = nums[end]+1, 就移动end指针, 否则, 插入字符串nums[start]->nums[end].

    [CODE]

    public class Solution {
        // [0,1,2,4,5,7], return ["0->2","4->5","7"]. 
        public List<String> summaryRanges(int[] nums) {
            List<String> res = new ArrayList<>();
            if(nums==null || nums.length<1) return  res;
            
            int s=0, e=0;
            while(e<nums.length) {
                if(e+1<nums.length && nums[e+1]==nums[e]+1) {
                    e++;
                } else {
                    if(s==e) {
                        res.add(Integer.toString(nums[s]));
                    } else {
                        String str = nums[s] + "->" + nums[e];
                        res.add(str);
                    }
                    ++e;
                    s = e;
                }
            }
            return res;
        }
    }




  • 相关阅读:
    二极管常用
    金属化孔与非金属化孔
    电容~3.钽电容
    电感~2.电路分析
    交流整流之后
    电容~2.电路分许
    三极管~3常见电路
    三极管~2.电路分析
    名词解释
    硬件设计
  • 原文地址:https://www.cnblogs.com/yutingliuyl/p/7199420.html
Copyright © 2011-2022 走看看