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

LeetCode: plusOne 题解

时间:2014-05-04 19:46:18      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:style   blog   class   code   java   color   

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.

 

题目大意:

给定一个由一组数字构成的数组表示的非负整数, 对这个数进行加一操作,并将结果数组返回。

数组的首元素存储的是该非负整数的最高位。

 

本题比较简单,主要是练习对STL的vector使用。

bubuko.com,布布扣
 1 class Solution {
 2 public:
 3     vector<int> plusOne(vector<int> &digits) {
 4         
 5         vector<int>::iterator iter = digits.begin();
 6         digits.insert(iter,1,0);  // 首位增加一位,以防进位加法,最高位不足
 7     
 8         vector<int>::reverse_iterator riter = digits.rbegin();
 9     
10         int c =1;
11         // 逆序进位加操作
12         for(;riter!=digits.rend();riter++)
13         {
14              *riter = *riter+c;
15              if(*riter>=10)
16              {
17                 *riter%=10;
18                 c =1;
19              }
20              else
21              {
22                 c=0;
23              }
24         }
25         //判断最高位是否为零
26         iter = digits.begin();
27         if(*iter==0) digits.erase(digits.begin());
28     
29         return digits;
30     }
31 };        
bubuko.com,布布扣

 

LeetCode: plusOne 题解,布布扣,bubuko.com

LeetCode: plusOne 题解

标签:style   blog   class   code   java   color   

原文地址:http://www.cnblogs.com/double-win/p/3706413.html

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