-
Notifications
You must be signed in to change notification settings - Fork 34
/
Copy pathProductExceptSelf.cs
73 lines (59 loc) · 2.05 KB
/
ProductExceptSelf.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
/*
题目名称:
除自身以外数组的乘积
题目描述:
给你一个长度为 n 的整数数组 nums,其中 n > 1,返回输出数组 output ,其中 output[i] 等于 nums 中除 nums[i] 之外其余各元素的乘积。
示例 1:
输入: [1,2,3,4]
输出: [24,12,8,6]
提示:
题目数据保证数组之中任意元素的全部前缀元素和后缀(甚至是整个数组)的乘积都在 32 位整数范围内。
说明:
请不要使用除法,且在 O(n) 时间复杂度内完成此题。
进阶:
你可以在常数空间复杂度内完成这个题目吗?( 出于对空间复杂度分析的目的,输出数组不被视为额外空间。)
代码结构:
public class Solution {
public int[] ProductExceptSelf(int[] nums) {
}
}
题目链接:
https://leetcode-cn.com/problems/product-of-array-except-self/
*/
using System;
using System.Collections.Generic;
namespace ProductExceptSelf {
class Solution {
/// <summary>
/// 解法
/// 基本思路:
/// 对于每个元素nums[i]
/// 先计算i左边的元素乘积 nums[i] = nums[0] * nums[1] * nums[2] * ... * nums[i - 1]
/// 再计算i右边的元素乘积 nums[i] = nums[i + 1] * nums[i + 2] * ... * nums[n - 1]
/// 再把两边的乘积相乘
/// </summary>
public int[] ProductExceptSelf(int[] nums) {
int len = nums.Length;
int[] res = new int[len];
int ret = 1;
for(int i = 0; i < len; ret *= nums[i ++])
res[i] = ret;
ret = 1;
for(int i = len - 1; i >= 0; ret *= nums[i --])
res[i] *= ret;
return res;
}
public void Print(int[] nums) {
foreach (int item in nums)
{
Console.Write(item + " ");
}
Console.WriteLine();
}
public void Test() {
int[] nums = new int[]{1, 2, 3, 4};
// nums = new int[]{2, 3};
Print(ProductExceptSelf(nums));
}
}
}