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

Plus One

时间:2014-06-04 19:19:52      阅读:185      评论:0      收藏:0      [点我收藏+]

标签:c   style   class   blog   code   java   

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

Plus One

标签:c   style   class   blog   code   java   

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

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