首页 > 其他 > 详细

66. Plus One

时间:2016-09-10 08:59:07      阅读:208      评论:0      收藏:0      [点我收藏+]

Given a non-negative number represented as an array of digits, plus one to the number.

The digits are stored such that the most significant digit is at the head of the list.

Solution 1: 

思路:刚开始想的是用for来遍历,但是这样会出很多不必要的操作。直接用while来判断是否有carry,carry为1就继续从右往左加1,carry为0就跳出循环。注意全为9的情况,因此要在while条件里面加m的范围来限制。跳出循环后再检查carry的情况,为1就再create new array把特殊情况输出,为0就输出digits。

public class Solution {
    public int[] plusOne(int[] digits) {
        int carry=1;
        int m=digits.length-1;
        while(carry!=0&&m>=0)
        {
            if(digits[m]<9)
            {
                digits[m]++;
                carry=0;
            }
            else
            {
                digits[m]=0;
                carry=1;
            }
            m--;
        }
        if(carry==1)
        {
            int[] res=new int[digits.length+1];
            res[0]=1;
            return res;
        }
        return digits;
        
    }
}

66. Plus One

原文:http://www.cnblogs.com/Machelsky/p/5858660.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!