对于非负整数 X 而言,X 的数组形式是每位数字按从左到右的顺序形成的数组。 例如,如果 X = 1231,那么其数组形式为 [1,2,3,1]。 给定非负整数 X 的数组形式 A,返回整数 X+K 的数组形式。 复制代码
示例:
输入:A = [1,2,0,0], K = 34 输出:[1,2,3,4] 解释:1200 + 34 = 1234 输入:A = [2,7,4], K = 181 输出:[4,5,5] 解释:274 + 181 = 455 输入:A = [2,1,5], K = 806 输出:[1,0,2,1] 解释:215 + 806 = 1021 输入:A = [9,9,9,9,9,9,9,9,9,9], K = 1 输出:[1,0,0,0,0,0,0,0,0,0,0] 解释:9999999999 + 1 = 10000000000 复制代码
思考:
这道题可以逐位将数字加在一起。 例如274和181,可以先计算2+1,7+8,4+1。当相加结果大于等于10,就要进位,7+8=15将进位的1加到前一位的计算中去。 复制代码
实现:
class Solution { public List<Integer> addToArrayForm(int[] A, int K) { int length = A.length; int cur = K; List<Integer> res = new ArrayList(); int i = length; while (--i >= 0 || cur > 0) { if (i >= 0) cur += A[i]; res.add(cur % 10); cur /= 10; } Collections.reverse(res); return res; } }复制代码
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
The Book of CSS3
Peter Gasston / No Starch Press / 2011-5-13 / USD 34.95
CSS3 is the technology behind most of the eye-catching visuals on the Web today, but the official documentation can be dry and hard to follow. Luckily, The Book of CSS3 distills the heady technical la......一起来看看 《The Book of CSS3》 这本书的介绍吧!