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

7. 加一

时间:2021-06-13 10:24:49      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:get   栈空间   nbsp   inter   git   car   数组   表示   als   

加一

[原题链接](初级算法 - LeetBook - 力扣(LeetCode)全球极客挚爱的技术成长平台 (leetcode-cn.com))

  • 给定一个由 整数 组成的 非空 数组所表示的非负整数,在该数的基础上加一。

  • 最高位数字存放在数组的首位, 数组中每个元素只存储单个数字。

  • 你可以假设除了整数 0 之外,这个整数不会以零开头。

import java.util.Arrays;

public class Solution {
    /**
     * 时间复杂度O(n), 空间复杂度O(n/10)
     * 改为循环实现可节省递归产生的栈空间
     * @param digits
     * @return
     */
    public int[] plusOne(int[] digits) {
        if (plusOne(digits, digits.length - 1)){
            int[] newArray = Arrays.copyOf(digits, digits.length + 1);
            newArray[0] = 1;
            return newArray;
        }
        return digits;
    }

    /**
     * 数组元素从末尾开始递归+1(十进制进位)
     * 若数组长度不够,返回true
     * @param digits
     * @param i
     * @return
     */
    private boolean plusOne(int[]digits, int i){
        boolean carry;
        //边界判断
        if (i >= digits.length) return false;
        //当数组不够进位时,返回true,在调用该函数的函数中进行处理
        if (i < 0) return true;
        if (digits[i] < 9) {
            digits[i]++;
            return false;
        }
        digits[i] = 0;
        carry = plusOne(digits, i - 1);
        return carry;
    }
}

    可改写为循环,节省出递归栈空间

7. 加一

标签:get   栈空间   nbsp   inter   git   car   数组   表示   als   

原文地址:https://www.cnblogs.com/getheading/p/14878635.html

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