238. 除自身以外数组的乘积

蔚落 2022-05-08 11:12 172阅读 0赞

给定长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。

  1. 输入: [1,2,3,4]
  2. 输出: [24,12,8,6]

说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。

进阶:
你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)

python3

  1. class Solution:
  2. def productExceptSelf(self, nums):
  3. output = []
  4. for i in range(0, len(nums)):
  5. tmp = nums[0]
  6. nums.pop(0)
  7. a = 1
  8. for i in nums:
  9. a *= i
  10. output.append(a)
  11. nums.append(tmp)
  12. return output

报了TLE错误,好吧很明显时间复杂度 o(n2)

python3

  1. class Solution:
  2. def productExceptSelf(self, nums):
  3. a = [1]
  4. b = [1]
  5. for i in range(0,len(nums)-1):
  6. a.append(a[i]*nums[i])
  7. b.append(b[i]*nums[-i-1])
  8. output = []
  9. for j in range(0,len(a)):
  10. output.append(a[j]*b[-j-1])
  11. return output

发表评论

表情:
评论列表 (有 0 条评论,172人围观)

还没有评论,来说两句吧...

相关阅读