Plus One

时间:2014-06-04 19:15:39   收藏:0   阅读:330

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.

bubuko.com,布布扣
class Solution {
public:
    vector<int> plusOne(vector<int> &digits) 
    {
        int len=digits.size();
        vector<int> result;
        if(len==0return result;
        
        int add=1;
        int index=len-1;
        while(index>=0 || add==1)
        {
            int sum=add;
            if(index>=0) sum=sum+digits[index--];
            result.push_back(sum%10);
            add=sum/10;
        }
        
        //reverse
        vector<int> result2;
        len=result.size();
        for(int i=0;i<len;i++)
            result2.push_back(result[len-i-1]);
            
        return result2;
    }
}; 
bubuko.com,布布扣

Plus One,布布扣,bubuko.com

原文:http://www.cnblogs.com/erictanghu/p/3759469.html

评论(0
© 2014 bubuko.com 版权所有 - 联系我们:wmxa8@hotmail.com
打开技术之扣,分享程序人生!