码迷,mamicode.com
首页 > 其他好文 > 详细

LeetCode--Plus One

时间:2014-12-29 21:24:42      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:

这个题目与java里的BigInteger实现有些类似,可以参考其源码。

题目:

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.

解决方案:

public class Solution {
    public int[] plusOne(int[] digits) {
        for(int i=digits.length-1;i>=0;i--){
            int temp=digits[i]+1;
            if(temp>=10){
                digits[i]=temp%10;
            }else{
                digits[i]=temp;
                break;
            }
        }
        if(digits[0]==0){
            int[] re=new int[digits.length+1];
            re[0]=1;
            for(int j=1;j<re.length;j++){
                re[j]=digits[j-1];
            }
            return re;
        }
        return digits;
    }
}



LeetCode--Plus One

标签:

原文地址:http://blog.csdn.net/wj512416359/article/details/42245191

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!