难度: Easy
原题连接
内容描述
Given a non-empty array of digits representing a non-negative integer, plus one to the integer.
The digits are stored such that the most significant digit is at the head of the list, and each element in the array contain a single digit.
You may assume the integer does not contain any leading zero, except the number 0 itself.
Example 1:
Input: [1,2,3]
Output: [1,2,4]
Explanation: The array represents the integer 123.
Example 2:
Input: [4,3,2,1]
Output: [4,3,2,2]
Explanation: The array represents the integer 4321.
思路 1 - 时间复杂度: O(N)- 空间复杂度: O(1)******
这里是用的递归,很容易理解,如果空列表直接加1,最后一位小于9,那么直接就最后一位加1,否则添加一个0,然后再把余下的递归加1
class Solution:
def plusOne(self, digits):
"""
:type digits: List[int]
:rtype: List[int]
"""
if not digits:
return [1]
if digits[-1] < 9:
return digits[:-1] + [digits[-1] + 1]
else:
return self.plusOne(digits[:-1]) + [0]
思路 2 - 时间复杂度: O(N)- 空间复杂度: O(1)******
迭代
class Solution:
def plusOne(self, digits):
"""
:type digits: List[int]
:rtype: List[int]
"""
carry = 1
for i in range(len(digits)-1, -1, -1):
digits[i] += carry
if digits[i] < 10:
carry = 0
break
else:
digits[i] = 0
return [1] + digits if carry == 1 else digits