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

Plus One

时间:2014-08-25 14:42:24      阅读:138      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   for   ar   div   log   

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.

思路:需要考虑进位的情况。

 1 class Solution {
 2 public:
 3     vector<int> plusOne( vector<int> &digits ) {
 4         int carry = 1;
 5         for( size_t i = digits.size(); i != 0; --i ) {
 6             if( ++digits[i-1] == 10 ) {
 7                 digits[i-1] = 0;
 8                 carry = 1;
 9             } else {
10                 return digits;
11             }
12         }
13         digits.insert( digits.begin(), 1 );
14         return digits;
15     }
16 };

 

Plus One

标签:style   blog   color   os   io   for   ar   div   log   

原文地址:http://www.cnblogs.com/moderate-fish/p/3933753.html

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