zoukankan      html  css  js  c++  java
  • LeetCode Plus One

    class Solution {
    public:
        vector<int> plusOne(vector<int> &digits) {
            int carry = 1;
            int len = digits.size();
            
            vector<int> res;
            
            for (int i=len-1; i>=0; i--) {
                int cur = carry + digits[i];
                carry = cur / 10;
                cur = cur % 10;
                res.push_back(cur);
            }
            if (carry) {
                res.push_back(1);
            }
            reverse(res.begin(), res.end());
            return res;
        }
    };

    水一发

    第二轮:

    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 public class Solution {
     2     public int[] plusOne(int[] digits) {
     3         int len = digits.length;
     4         for (int i=len-1; i>=0; i--) {
     5             int d = digits[i];
     6             if (d<9) {
     7                 digits[i]++;
     8                 return digits;
     9             } else {
    10                 digits[i] = 0;
    11             }
    12         }
    13         int[] res = new int[len+1];
    14         res[0] = 1;
    15         return res;
    16     }
    17 }
  • 相关阅读:
    写的好的功能参考地址
    碰撞检测原理
    懒加载原理的实现
    jQuery图片延迟加载插件jQuery.lazyload 的使用
    电子工厂生产楼职位解析
    打印条码方式
    条码打印二
    条码打印三
    CSS实现圆角矩形
    条码打印四
  • 原文地址:https://www.cnblogs.com/lailailai/p/3825263.html
Copyright © 2011-2022 走看看