力扣刷题(python)50天——第四十七天:除自身以外数组的乘积

版权声明:本文为博主原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接: https://blog.csdn.net/weixin_44568780/article/details/100798968

力扣刷题(python)50天——第四十七天:除自身以外数组的乘积

题目描述

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

示例:

输入: [1,2,3,4]
输出: [24,12,8,6]
说明: 请不要使用除法,且在 O(n) 时间复杂度内完成此题。

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

来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/product-of-array-except-self
著作权归领扣网络所有。商业转载请联系官方授权,非商业转载请注明出处。

方法

由于规定了不能用除法,故不能全乘起来然后逐项除。
参考:

https://leetcode-cn.com/problems/product-of-array-except-self/solution/zai-ji-suan-guo-cheng-zhong-fu-yong-cheng-ji-lai-t/

解答

class Solution(object):
    def productExceptSelf(self, nums):
        """
        :type nums: List[int]
        :rtype: List[int]
        """
        leftnums=[1]
        rightnums=[1]
        ans=[]
        l=len(nums)
        for i in range(1,l):
            leftnums.append(nums[i-1]*leftnums[-1])
            rightnums.insert(0,nums[l-i]*rightnums[0])
        for i in range(l):
            ans.append(leftnums[i]*rightnums[i])
        return ans

执行结果

不知道为啥有点惨,,,,然后就是在之前我用列表间的+法来代替append一直超时,值得注意!!
在这里插入图片描述

提升:

1.对比参考看看为什么时间这么长?
2.目前看过的最佳解:双指针,常数空间复杂度

https://leetcode-cn.com/problems/product-of-array-except-self/solution/python-5xing-shuang-zhi-zhen-by-knifezhu/

猜你喜欢

转载自blog.csdn.net/weixin_44568780/article/details/100798968
今日推荐