子数组之和

  给定一个整数数组,找到和为零的子数组。你的代码应该返回满足要求的子数组的起始位置和结束位置。

  样例
  给出[-3, 1, 2, -3, 4],返回[0, 2] 或者 [1, 3].


  

class Element implements Comparable<Element>{
    int val;
    int index;
    public Element(int v, int i)
    {
       val=v;
       index=i;
    } 
    public int compareTo(Element other)
    {
       return this.val-other.val;
    }
 
    public int getIndex()
    {
       return index;
    }
 
    public int getValue()
    {
       return val;
    }
}
public class Solution {
    /**
     * @param nums: A list of integers
     * @return: A list of integers includes the index of the first number 
     *          and the index of the last number
     */
    public ArrayList<Integer> subarraySum(int[] nums) {
        ArrayList<Integer> res=new ArrayList<Integer>();
        if(nums.length==0) 
              return res;
        Element[] sums=new Element[nums.length+1];
        sums[0]=new Element(0,-1);
        int sum=0;
        for (int i=0;i<nums.length;i++)
        {
            sum+=nums[i];
            sums[i+1]=new Element(sum,i);
        }
        Arrays.sort(sums);
        int min=Math.abs(sums[0].getValue()-sums[1].getValue());
        int start=Math.min(sums[0].getIndex(),sums[1].getIndex())+1;
        int end=Math.max(sums[0].getIndex(),sums[1].getIndex());
        for(int i=1;i<nums.length;i++){
            int diff=Math.abs(sums[i].getValue()-sums[i+1].getValue());
            if (diff<min)
            {
                min=diff;
                start=Math.min(sums[i].getIndex(),sums[i+1].getIndex())+1;
                end =Math.max(sums[i].getIndex(),sums[i+1].getIndex());
            }
        }
        res.add(start);
        res.add(end);
        return res;
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值