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

时间: 2024-11-08 11:25:56

238. Product of Array Except Self [medium] (Python)的相关文章

leetcode 238. Product of Array Except Self (Python版)

题目: 好长,大意是返回一个列表,列表中第i个元素为nums中出了i以外元素的乘积 注意不能用除法,时间复杂度为O(n) 空间复杂度为O(1) 解题思路: 利用返回的列表从前往后算一遍,再从后往前算一次即可 代码: class Solution(object):     def productExceptSelf(self, nums):         """         :type nums: List[int]         :rtype: List[int]  

Leetcode 238. Product of Array Except Self

238. Product of Array Except Self Total Accepted: 51070           Total Submissions: 116543           Difficulty: Medium 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 ele

LeetCode OJ 238. Product of Array Except Self 解题报告

题目链接:https://leetcode.com/problems/product-of-array-except-self/ 238. Product of Array Except Self My Submissions Question Total Accepted: 36393 Total Submissions: 87262 Difficulty: Medium Given an array of n integers where n > 1, nums, return an arr

刷题238. Product of Array Except Self

一.题目说明 题目238. Product of Array Except Self,给n个整数,返回一个数组,每个元素都是原数组除了该位置元素外的乘积.不能用除法,复杂度要求是O(n).难度是Medium! 二.我的解答 看到这个问题,我第一想法就是求所有元素的乘积,然后就简单了.但是不允许使用除法... 然后能想到的思路就是可以用动态规划:dp[i]=nums[0]*...*nums[i-1] = dp[i-1]*nums[i-1] 可以将result[]作为dp使用,技巧在于,从左到右,从

LeetCode Q238 Product of Array Except Self(Medium)

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 [

[leedcode 238] 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]. Fo

leetcode:238. Product of Array Except Self(Java)解答

转载请注明出处:z_zhaojun的博客 原文地址 题目地址 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 i

【LeetCode】238. Product of Array Except Self

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

(medium)LeetCode 238.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]. Fo