首页 > 其他 > 详细

LeetCode (14) Plus One

时间:2015-04-18 23:48:13      阅读:413      评论: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.

使用字符串表示数字,对数字进行“加1”操作,返回结果字符串。数字的高位在左边,低位在右边,与我们通常看到的数字顺序习惯相同。

本题比较简单,需要注意的地方就是在进行相加操作时,逢十进一。

  • 当数字的最低位不为9时,直接对最低位加1,其他位不需要改变。
  • 若最低位为9,遍历找到从右向左连续的第一个9,对该位的前一位加1,后面的9变为0。
class Solution {
public:
    vector<int> plusOne(vector<int> &digits) {
        int size = digits.size();

        int i = size - 1;
        while (digits[i] == 9 && i > -1)
        {
            i--;
        }

        if (i == size - 1)
        {
            vector<int> r(digits.begin(), digits.end());
            r[i]++;
            return r;
        }

        vector<int> r;
        if (i == -1)
        {
            r.push_back(1);
            for (int j = 0; j != size; ++j)
                r.push_back(0);
        }
        else{
            for (int j = 0; j != i; ++j)
                r.push_back(digits[j]);
            r.push_back(digits[i] + 1);
            for (int j = i + 1; j != size; ++j)
                r.push_back(0);
        }
        return r;
    }
};

LeetCode (14) Plus One

原文:http://blog.csdn.net/angelazy/article/details/45117141

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