Leetcode Problem.66—Plus One

来源:互联网 发布:淘宝发票抬头设置 编辑:程序博客网 时间:2024/06/13 13:19

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.

My C++ solution!

    vector<int> plusOne(vector<int>& digits)     {        int len=digits.size();        int temp;        int jinwei=0;        for(int i=len-1;i>=0;i--)          {              temp=i==(len-1)?(digits[i]+1+jinwei):digits[i]+jinwei;                digits[i]=temp%10;              jinwei=temp/10;          }        if(jinwei==1)           digits.insert(digits.begin(),1);        return digits;    }


0 0
原创粉丝点击