Plus One 加一运算

Posted zl1991

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Plus One 加一运算相关的知识,希望对你有一定的参考价值。

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.

 

将一个数字的每个位上的数字分别存到一个一维向量中,最高位在最开头,我们需要给这个数字加一,即在末尾数字加一,如果末尾数字是9,那么则会有进位问题,而如果前面位上的数字仍为9,则需要继续向前进位。具体算法如下:首先判断最后一位是否为9,若不是,直接加一返回,若是,则该位赋0,再继续查前一位,同样的方法,知道查完第一位。如果第一位原本为9,加一后会产生新的一位,那么最后要做的是,查运算完的第一位是否为0,如果是,则在最前头加一个1。代码如下:

//输入的数组digits表示一个大整数,每个表示一位。
class Solution {
public:
    vector<int> plusOne(vector<int> &digits) {
        const int num = 1;  //待加数
        int carry = num;    //进位
        for (int i = digits.size() - 1; i >= 0; i--) {
            digits[i] += carry;
            carry = digits[i] / 10;
            digits[i] %= 10;
        }
        if (carry > 0)
            digits.insert(digits.begin(),1);
        return digits;
    }
};

 

以上是关于Plus One 加一运算的主要内容,如果未能解决你的问题,请参考以下文章

leetcode66. 加一(Plus One)

算法:加一66. Plus One

66. 加一问题 Plus One

[leetcode]66. Plus One加一

leetcode-Plus One 加一

LeetCode 66 Plus One(加一)(vector)