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

LeetCode Plus One

时间:2014-07-06 16:43:39      阅读:104      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   for   io   leetcode   

class Solution {
public:
    vector<int> plusOne(vector<int> &digits) {
        int carry = 1;
        int len = digits.size();
        
        vector<int> res;
        
        for (int i=len-1; i>=0; i--) {
            int cur = carry + digits[i];
            carry = cur / 10;
            cur = cur % 10;
            res.push_back(cur);
        }
        if (carry) {
            res.push_back(1);
        }
        reverse(res.begin(), res.end());
        return res;
    }
};

水一发

LeetCode Plus One,布布扣,bubuko.com

LeetCode Plus One

标签:style   blog   color   for   io   leetcode   

原文地址:http://www.cnblogs.com/lailailai/p/3825263.html

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