面试题66. 构建乘积数组
class Solution { public: vector<int> constructArr(vector<int>& a) { int n=a.size(); vector<int> b(n,1); int tmp=1; for(int i=1;i<n;i++) b[i]=b[i-1]*a[i-1]; for(int i=n-2;i>=0;i--){ tmp*=a[i+1]; b[i]*=tmp; } return b; } };
本版积分规则 发表回复 回帖并转播 回帖后跳转到最后一页
QQ咨询|关于我们|Archiver|手机版|小黑屋|( 辽ICP备15012455号-4 ) Powered by 期权论坛 X3.2 © 2001-2016 期权工具网&期权论坛 Inc.
下载期权论坛手机APP