238. Product of Array Except Self
2018-06-18 00:02:21来源:未知 阅读 ()
Given an array of n integers where n > 1, nums
, return an array output
such that output[i]
is equal to the product of all the elements of nums
except nums[i]
.
对于一个n>1的数组,输出这样的一个数组:output[i]等于nums中除nums[i]以外所有数的乘积。
Solve it without division and in O(n).
不能使用除法,时间复杂度为O(n).
For example, given [1,2,3,4]
, return [24,12,8,6]
.
遍历数组两遍,符合时间复杂度O(n),没有使用额外的空间(额外空间指除了ret之外的空间)。第一遍计算第i个数的左边部分的乘积,第二遍计算第i个数右边部分的乘积。
1 class Solution { 2 public: 3 vector<int> productExceptSelf(vector<int>& nums) { 4 if(nums.empty())return vector<int>(); 5 int n=nums.size(); 6 vector<int> ret(n,1); 7 for(int i=1;i<n;i++){ 8 ret[i]=ret[i-1]*nums[i-1]; 9 } 10 int right=1; 11 for(int i=n-1;i>=0;i--){ 12 ret[i]*=right; 13 right*=nums[i]; 14 } 15 return ret; 16 } 17 };
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- C++ 模板类array 2020-05-31
- 操作符重载(二) 2019-09-30
- Median of Two Sorted Arrays 2019-08-16
- Relative Sort Array 2019-08-16
- Two Sum 2019-08-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash