[LeetCode] 面试题64. 求1+2+…+n
Posted doyi111
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了[LeetCode] 面试题64. 求1+2+…+n相关的知识,希望对你有一定的参考价值。
yi开始自己想的
class Solution { public int[] productExceptSelf(int[] nums) { int[] res=new int[nums.length]; int sum=1; for(int num:nums){ sum =sum*num; } for(int i=0;i<nums.length;i++){ res[i]=sum/nums[i]; } return res; } }
没考虑到可能会有0在分母上
牛了这个方法:
class Solution { public int[] productExceptSelf(int[] nums) { int[] res = new int[nums.length]; int k = 1; for(int i = 0; i < res.length; i++){ res[i] = k; k = k * nums[i]; // 此时数组存储的是除去当前元素左边的元素乘积 } k = 1; for(int i = res.length - 1; i >= 0; i--){ res[i] *= k; // k为该数右边的乘积。 k *= nums[i]; // 此时数组等于左边的 * 该数右边的。 } return res; } } 作者:LDouble 链接:https://leetcode-cn.com/problems/product-of-array-except-self/solution/cheng-ji-dang-qian-shu-zuo-bian-de-cheng-ji-dang-q/ 来源:力扣(LeetCode) 著作权归作者所有。商业转载请联系作者获得授权,非商业转载请注明出处。
以上是关于[LeetCode] 面试题64. 求1+2+…+n的主要内容,如果未能解决你的问题,请参考以下文章