首页 > 代码库 > 66. Plus One
66. Plus One
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.
Solution 1:
思路:刚开始想的是用for来遍历,但是这样会出很多不必要的操作。直接用while来判断是否有carry,carry为1就继续从右往左加1,carry为0就跳出循环。注意全为9的情况,因此要在while条件里面加m的范围来限制。跳出循环后再检查carry的情况,为1就再create new array把特殊情况输出,为0就输出digits。
public class Solution { public int[] plusOne(int[] digits) { int carry=1; int m=digits.length-1; while(carry!=0&&m>=0) { if(digits[m]<9) { digits[m]++; carry=0; } else { digits[m]=0; carry=1; } m--; } if(carry==1) { int[] res=new int[digits.length+1]; res[0]=1; return res; } return digits; }}
66. Plus One
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。