leetcode 228:Summary Ranges

                    leetcode 228:Summary Ranges

题目:
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指向终点。
代码:

import java.util.LinkedList;
import java.util.List;

public class SummaryRanges {
    public static List<String> summaryRanges(int[] nums){
        List<String> res=new LinkedList<String>();
        int start=0,end=0;
        int len=nums.length;
        while(end<len){
            if(end+1<len && nums[end+1]==nums[end]+1){
                end++;
            }else{
                if(start==end){
                    res.add(Integer.toString(nums[start]));
                }else{
                    String str=nums[start]+"->"+nums[end];
                    res.add(str);
                }
                ++end;
                start=end;
            }
            System.out.println("end:"+end);
        }
        return res;
    }
    public static void main(String[] args){
        int[] nums={0,1,2,4,5,6,7};
        List<String> result=summaryRanges(nums);
        for(String i:result){
            System.out.println("列表元素为:"+i);
        }
    }
}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值