Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Loading...
Written by Array Alchemist
LeetCode wizard with 75 conquered challenges under my belt.
Turning algorithm nightmares into "Aha!" moments, one explanation at a time.
Join me to level up your coding skills – from interviews to real-world application!
#4 Product of Array Except Self
Blind 75. Array.
Given an integer array
nums
, return an arrayanswer
such thatanswer[i]
is equal to the product of all the elements ofnums
exceptnums[i]
.You must write an algorithm that runs in
O(n)
time and without using the division operation.Example 1:
Before we jump into solving this product, let's first take our time and discuss where we need to use this algorithm in the real world? why bother to learn it anyways?
Real world use of this algorithm:
Now let's see how we can solve this?
has a time complexity of O(N*N), which does not meet the requirement of O(N)
What's the problem?
Main problem is redundant calculation. For each element in the output array, it recalculated the product of all the other elements, even though some of the product could have been reused from previous calculations.
******* Brainstorming *******
To optimize the solutions in O(N), we need to find a way to avoid the redundant calculations and reuse the intermediate results as much as possible.
Oneway to calculate the product of array @ i, without i = prefix(i) * postfix(i)
This is the result in leetcode.
here there is prefix and postFix array, let's see if can further optimize this solution to just use result array to save more space.
here we have more optimized result.
So this is how this array problem can be solved and further optimized