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

Plus One

时间:2014-11-14 12:18:20      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   ar   os   sp   for   

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.

题目:

给定一个十进制数,用数组表示每一位,要求返回加一后的结果

思路:

从数组尾部到头部处理,需要判断是否最后要进位,如果要进位需要在vector的最前面插入1.

 

C++代码如下:

#include<iostream>
#include<vector>
using namespace std;

class Solution {
public:
    vector<int> plusOne(vector<int> &digits) {
        int size=digits.size()-1;
        while(size>=0)
        {
            if(digits[size]<9)
            {
                digits[size]+=1;
                break;
            }
            else
            {
                digits[size]=0;
                size--;
            }
        }
        size++;
        if(size==0&&digits[size]==0)
        {
            digits.insert(digits.begin(),1);
        }
        return digits;
    }
    void Convert(int num,vector<int> &digits)
    {
        if(num>=10)
            Convert(num/10,digits);
        digits.push_back(num%10);
    }
};

int main()
{
    vector<int> digits;
    int num;
    cin>>num;
    Solution s;
    s.Convert(num,digits);
    for(auto v:digits)
        cout<<v<<" ";
    cout<<endl;
    s.plusOne(digits);
    for(auto v:digits)
        cout<<v<<" ";
    cout<<endl;
}

运行结果:

bubuko.com,布布扣

 

Plus One

标签:style   blog   http   io   color   ar   os   sp   for   

原文地址:http://www.cnblogs.com/wuchanming/p/4096700.html

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