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

leetcode-Plus One 加一

时间:2018-04-16 19:24:32      阅读:225      评论:0      收藏:0      [点我收藏+]

标签:分析   组成   none   style   leading   question   bubuko   --   present   

Plus One

question:

Given a non-negative integer represented as a non-empty array of digits, plus one to the integer.

You may assume the integer do not contain any leading zero, except the number 0 itself.

The digits are stored such that the most significant digit is at the head of the list.

技术分享图片
给定一个非负整数组成的非空数组,给整数加一。

可以假设整数不包含任何前导零,除了数字0本身。

最高位数字存放在列表的首位。
中文

 

分析:

分析会有三种可能,请看到下面的图

主要是判断9在那个位置

技术分享图片

 代码实现:

class Solution {
    public int[] plusOne(int[] digits) {
        int length= digits.length;//数组长度
        for(int i = length-1;i>=0;i--){
            if(digits[i]!=9){// 判断9的位置
                digits[i]++;
                return digits;
            }
            digits[i]=0;
        }
        int[] newDigits= new int[length+1];//第三种可能
        newDigits[0]=0;
        return newDigits;
        
    }
}

 

视频链接: 

 

leetcode-Plus One 加一

标签:分析   组成   none   style   leading   question   bubuko   --   present   

原文地址:https://www.cnblogs.com/liu-wang/p/8857893.html

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