238. Product of Array Except Self [medium] (Python)

题目链接

https://leetcode.com/problems/product-of-array-except-self/

题目原文

Given an array of n integers where n > 1, nums, return an array output such that output[i] is equal to the product of all the elements of nums except nums[i].

Solve it without division and in O(n).
For example, given [1,2,3,4], return [24,12,8,6].

Follow up:
Could you solve it with constant space complexity? (Note: The output array does not count as extra space for the purpose of space complexity analysis.)

思路方法

思路一

为方便打开思路,先不考虑“Follow up”的要求。不能用除法,还要求O(n)的时间复杂度,那么乘法不能做的太过。考虑先正反两次遍历,一次遍历求每个数左侧的所有数的积,一次遍历求每个数右侧的所有数的积,最后两部分积相乘即得所求。
下面的代码使用了额外的两个数组,空间复杂度O(n)。

代码

class Solution(object):
    def productExceptSelf(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        res, leftMul, rightMul = [0]*len(nums), [0]*len(nums), [0]*len(nums)
        leftMul[0] = rightMul[len(nums)-1] = 1
        for i in xrange(1, len(nums)):
            leftMul[i] = leftMul[i-1] * nums[i-1]
        for i in xrange(len(nums)-2, -1, -1):
            rightMul[i] = rightMul[i+1] * nums[i+1]
        for i in xrange(len(nums)):
            res[i] = leftMul[i] * rightMul[i]
        return res

思路二

在上面的基础上,实际上用数组存储左右的积并不必要,用临时变量即可,于是有下面的O(1)空间复杂度的解法。

代码

class Solution(object):
    def productExceptSelf(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        res = [0]*len(nums)
        tmp = 1
        for i in xrange(len(nums)):
            res[i] = tmp
            tmp *= nums[i]
        tmp = 1
        for i in xrange(len(nums)-1, -1, -1):
            res[i] *= tmp
            tmp *= nums[i]
        return res

PS: 写错了或者写的不清楚请帮忙指出,谢谢!
转载请注明:http://blog.csdn.net/coder_orz/article/details/52071951

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值