【LeetCode】关关的刷题日记23——Leetcode 66. Plus One

点击上方“专知”关注获取更多AI知识!


关小刷刷题 23——Leetcode 66. Plus One

题目

Given a non-negative integer represented as a non-empty array of digits, plus one to the integer.

You may assume the integer do not contain any leading zero, except the number 0 itself.

The digits are stored such that the most significant digit is at the head of the list.

题目的意思是给定一个非空数组来表示一个非负整数,除了0这个数本身,其它的数都没有前导零,将这个数加一,求得到的结果,要求仍然用数组来表示。数组的前面存数的高位。

思路

思路:计算的过程就和加法笔算类似,注意进位,尤其是最高位有进位的时候需要额外处理一下。时间复杂度O(n).

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

自己强大最重要了,尤其是女孩子,加油!

以上就是关关关于这道题的总结经验,希望大家能够理解,有什么问题可以在我们的专知公众号平台上交流或者加我们的QQ专知-人工智能交流群 426491390,也可以加入专知——Leetcode刷题交流群(请先加微信小助手weixinhao: Rancho_Fang)。 


专知网站查看Leetcode刷题日记:

请登录www.zhuanzhi.ai或者点击阅读原文,顶端搜索“Leetcode” 主题,取查看获得专知Leetcode所有资源!如下图所示~ 


 请感兴趣的同学,扫一扫下面群二维码,加入到专知-LeetCode学习交流群!

请扫描小助手,加入专知人工智能群,交流分享~


欢迎转发到你的微信群和朋友圈,分享专业AI知识!


获取更多关于机器学习以及人工智能知识资料,请访问www.zhuanzhi.ai,  或者点击阅读原文,即可得到!


-END-

欢迎使用专知

专知,一个新的认知方式!目前聚焦在人工智能领域为AI从业者提供专业可信的知识分发服务, 包括主题定制、主题链路、搜索发现等服务,帮你又好又快找到所需知识。


使用方法>>访问www.zhuanzhi.ai, 或点击文章下方“阅读原文”即可访问专知


中国科学院自动化研究所专知团队

@2017 专知


专 · 知


关注我们的公众号,获取最新关于专知以及人工智能的资讯、技术、算法、深度干货等内容。扫一扫下方关注我们的微信公众号。


点击“阅读原文”,使用专知

展开全文
Top
微信扫码咨询专知VIP会员