# 238. Product of Array Except Self

> Given an array `nums` of *n* integers where *n* > 1,  return an array `output` such that `output[i]` is equal to the product of all the elements of `nums` except `nums[i]`.
>
> **Example:**
>
> ```
> Input:  [1,2,3,4]
> Output: [24,12,8,6]
> ```
>
> **Constraint:** It's guaranteed that the product of the elements of any prefix or suffix of the array (including the whole array) fits in a 32 bit integer.
>
> **Note:** Please solve it **without division** and in O(*n*).
>
> **Follow up:**\
> Could you solve it with constant space complexity? (The output array **does not** count as extra space for the purpose of space complexity analysis.)

## Thoughts

依次求出每个数左边的连积和右边的连积。

## Code

```python
class Solution:
    def productExceptSelf(self, nums: List[int]) -> List[int]:
        N, r = len(nums), 1
        res = [1] * N
        for i in range(1, N):
            res[i] = res[i - 1] * nums[i - 1]
        for i in reversed(range(N)):
            res[i] *= r
            r *= nums[i]
        return res
    
```

```cpp
class Solution {
public:
    vector<int> productExceptSelf(vector<int>& nums) {
        const auto N = nums.size();
        vector<int> res(N);
        res[0] = 1;
        for (int i = 1, p = 1; i < N; ++i) {
            p *= nums[i - 1];
            res[i] = p;
        }
        for (int i = N - 2, p = 1; i >= 0; --i) {
            p *= nums[i + 1];
            res[i] *= p;
        }
        return res;
    }
};


```

## Analysis

Errors:

1. 当右边到达0时, res\[0]原先的值是0, 应不用乘res\[0].

时间复杂度O(N), 无额外空间.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://hao-fu-1.gitbook.io/oj/array_and_numbers/presum/product-of-array-except-self.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
