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

66. Plus One

时间:2019-08-23 22:16:50      阅读:112      评论:0      收藏:0      [点我收藏+]

标签:return   get   plus one   repr   array   dig   one   Plan   tput   

description:

给 vector 表示的数字 +1
Note:

Example:

Example 1:

Input: [1,2,3]
Output: [1,2,4]
Explanation: The array represents the integer 123.

Example 2:

Input: [4,3,2,1]
Output: [4,3,2,2]
Explanation: The array represents the integer 4321.

answer:

class Solution {
public:
    vector<int> plusOne(vector<int>& digits) {
        int n = digits.size();
        for (int i = n - 1; i >= 0; i--) {
            if (digits[i] == 9) digits[i] = 0;
            else {
                digits[i] += 1;
                return digits;
            }
        }
        if (digits.front() == 0) {
            digits.insert(digits.begin(), 1);
        }
        return digits;
    }
};

relative point get√:

hint :

从最后开始检查,是 9 就 变成 0, 再检查前面的一位,直到不是 9 了,就直接加一然后返回,如果最前需要加位就加。

66. Plus One

标签:return   get   plus one   repr   array   dig   one   Plan   tput   

原文地址:https://www.cnblogs.com/forPrometheus-jun/p/11402601.html

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