• Leetcode238. 除自身以外数组的乘积


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

    题目:
    给你一个整数数组 nums,返回 数组 answer ,其中 answer[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积 。
    题目数据 保证 数组 nums之中任意元素的全部前缀元素和后缀的乘积都在 32 位 整数范围内。
    请不要使用除法,且在 O(n) 时间复杂度内完成此题。

    示例 1:

    输入: nums = [1,2,3,4]
    输出: [24,12,8,6]
    
    • 1
    • 2

    示例 2:

    输入: nums = [-1,1,0,-3,3]
    输出: [0,0,9,0,0]
    
    • 1
    • 2

    题解:

    解法一:

    1. 初始化两个空数组 L 和 R。对于给定索引 i i i L [ i ] L[i] L[i] 代表的是 i 左侧所有数字的乘积, R [ i ] R[i] R[i] 代表的是 i i i 右侧所有数字的乘积。
    2. 我们需要用两个循环来填充 L 和 R 数组的值。对于数组 L, L [ 0 ] L[0] L[0] 应该是 1,因为第一个元素的左边没有元素。对于其他元素: L [ i ] = L [ i − 1 ] ∗ n u m s [ i − 1 ] L[i]= L[i-1] * nums[i-1] L[i]=L[i1]nums[i1]
    3. 同理,对于数组 R, R [ l e n g t h − 1 ] R[length-1] R[length1]应为 1。length 指的是输入数组的大小。其他元素: R [ i ] = R [ i + 1 ] ∗ n u m s [ i + 1 ] R[i] = R[i+1]* nums[i+1] R[i]=R[i+1]nums[i+1]。 当 R 和 L 数组填充完成,我们只需要在输入数组上迭代,且索引 i 处的值为: L [ i ] ∗ R [ i ] L[i] * R[i] L[i]R[i]

    解法二:

    1. 初始化 a n s w e r answer answer 数组,对于给定索引 i i i a n s w e r [ i ] answer[i] answer[i]代表的是 i i i 左侧所有数字的乘积。
    2. 构造方式与之前相同,只是我们试图节省空间,先把 answer 作为方法一的 L 数组。
    3. 这种方法的唯一变化就是我们没有构造 R数组。而是用一个遍历来跟踪右边元素的乘积。并更新数组
      a n s w e r [ i ] = a n s w e r [ i ] ∗ R answer[i]=answer[i]*R answer[i]=answer[i]R。然后 R更新为 R = R ∗ n u m s [ i ] R=R*nums[i] R=Rnums[i],其中变量 R R R表示的就是索引右侧数字的乘积。

    java代码:

    public static int[] productExceptSelf(int[] nums) {
            if (nums == null || nums.length == 0) return null;
            int len = nums.length;
            int[] left = new int[len];
            int[] right = new int[len];
    
            int[] ans = new int[len];
    
            left[0] = 1;
            for (int i = 1; i < len; i++) {
                left[i] = left[i - 1] * nums[i - 1];
            }
    
            right[len - 1] = 1;
            for (int j = len - 2; j >= 0; j--) {
                right[j] = right[j + 1] * nums[j + 1];
            }
    
            for (int i = 0; i < len; i++) {
                ans[i] = left[i] * right[i];
            }
            return ans;
        }
    
        public static int[] productExceptSelf2(int[] nums) {
            if (nums == null || nums.length == 0) return null;
            int len = nums.length;
    
            int[] ans = new int[len];
    
            ans[0] = 1;
            for (int i = 1; i < len; i++) {
                ans[i] = ans[i - 1] * nums[i - 1];
            }
    
            int right = 1;
            for (int j = len - 1; j >= 0; j--) {
                ans[j] = ans[j] * right;
                right = right * nums[j];
            }
            return ans;
        }
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
  • 相关阅读:
    【oncmdmsg 鼠标】2023/8/19 上午9:50:14
    一个可以加密的PDF文档二维码,如何制作?
    图扑税务信息化系统管理平台,构建项目管理“一张网”
    基于SSM的“基于Apriori算法的网络书城”的设计与实现(源码+数据库+文档)
    MySQL(十)事务隐性提交
    CCRC信息安全服务资质认证条件
    树莓派SSH链接出错 Host key verification failed. 解决办法
    Golang | Leetcode Golang题解之第40题组合总和II
    2022IDEA配置启动lilishop的swagger展示
    python实现Flask GET Demo
  • 原文地址:https://blog.csdn.net/sunhaiting666/article/details/126287607