数组剔除元素后的乘积
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数组剔除元素后的乘积相关的知识,希望对你有一定的参考价值。
给出A=[1, 2, 3],返回 B为[6, 3, 2]
public ArrayList<Long> productExcludeItself(ArrayList<Integer> A) { ArrayList<Long> rst = new ArrayList<>(); for(int i=0; i<A.size(); i++){ Long cur = 1L; for(int j=0; j<A.size(); j++){ if(j==i) continue; cur *= A.get(j); } rst.add(cur); } return rst; }
以上是关于数组剔除元素后的乘积的主要内容,如果未能解决你的问题,请参考以下文章
协方差 和 相关系数(剔除了两个变量量纲影响标准化后的特殊协方差)