[LintCode] 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.

Example

Given [1,2,3] which represents 123, return[1,2,4].

Given [9,9,9] which represents 999, return[1,0,0,0].

LeetCode上的原题,请参见我之前的博客Plus One

解法一:

class Solution {
public:
    /**
     * @param digits a number represented as an array of digits
     * @return the result
     */
    vector<int> plusOne(vector<int>& digits) {
        vector<int> res;
        int carry = 1, n = digits.size();
        for (int i = n - 1; i >= 0; --i) {
            int sum = digits[i] + carry;
            res.insert(res.begin(), sum % 10);
            carry = sum / 10;
        }
        if (carry == 1) res.insert(res.begin(), 1);
        return res;
    }
};

解法二:

class Solution {
public:
    /**
     * @param digits a number represented as an array of digits
     * @return the result
     */
    vector<int> plusOne(vector<int>& digits) {
        for (int i = digits.size() - 1; i >= 0; --i) {
            if (digits[i] < 9) {
                digits[i] += 1;
                return digits;
            }
            digits[i] = 0;
        }
        digits.insert(digits.begin(), 1);
        return digits;
    }
};

本文转自博客园Grandyang的博客,原文链接:加一运算[LintCode] Plus One ,如需转载请自行联系原博主。

相关文章
|
7月前
|
存储
【每日一题Day253】LC2两数相加 | 链表模拟
【每日一题Day253】LC2两数相加 | 链表模拟
28 0
|
7月前
|
存储
【每日一题Day254】LC445两数相加Ⅱ | 链表反转 栈
【每日一题Day254】LC445两数相加Ⅱ | 链表反转 栈
48 0
|
算法 C++
剑指offer(C++)-JZ65:不用加减乘除做加法(算法-位运算)
剑指offer(C++)-JZ65:不用加减乘除做加法(算法-位运算)
|
存储
每日一题(两数相加)
每日一题(两数相加)
剑指offer 73. 不用加减乘除做加法
剑指offer 73. 不用加减乘除做加法
66 0
|
测试技术
【牛客】WY49数对,JZ65不用加减乘除做加法
【牛客】WY49数对,JZ65不用加减乘除做加法
164 0
【牛客】WY49数对,JZ65不用加减乘除做加法
|
存储 算法 Go
【刷题】两数相加
【刷题】两数相加
105 0
【刷题】两数相加
大数的四则运算(加,减,乘,除)处理
大数的四则运算(加,减,乘,除)处理
601 0
大数的四则运算(加,减,乘,除)处理
|
存储 算法 Python
【每日算法打卡】2. 两数相加
【每日打卡系列】LeetCode 简单题 200 道
【每日算法打卡】2. 两数相加
|
存储 算法
【刷算法】LeetCode.2-两数相加
【刷算法】LeetCode.2-两数相加