当前位置:   article > 正文

LeetCode 238 计算数组除自己外的元素乘积_数组除了本本身其他连乘怎么

数组除了本本身其他连乘怎么
  1. class Solution {
  2. public:
  3. vector<int> productExceptSelf(vector<int>& nums) {
  4. int n = nums.size();
  5. vector<int> res(n, 1); // res有n个元素,值为1
  6. if(n <= 1){
  7. return nums;
  8. }
  9. for(int i = 1; i < n; i++){ // res={1, n0, n0n1, n0n1n2};
  10. res[i] = res[i-1] * nums[i-1];
  11. }
  12. int right = 1;
  13. for(int i = n-2; i >= 0; i--){
  14. right *= nums[i+1]; // right = n3,n3n2,n3n2n1
  15. res[i] = res[i]*right;
  16. }
  17. return res;
  18. }
  19. };

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/天景科技苑/article/detail/857472
推荐阅读
相关标签
  

闽ICP备14008679号