EvLer
- 454
- 0
Hello, I really trying to understand what is going on with these summations.
the code is following:
Does j enter anywhere here besides the upper bound of the inner-most summation?
Here is what I have so far
In the course of my attempt to solve this thing, I cannot get rid of j, while the expression is supposed to be in terms of n.
How do I get around it?
Thanks a lot.
the code is following:
Code:
for p = 2 to n
for i = 1 to n - p + 1
j = i + p -1
for k = i to j - 1
O(1) + O(1)
Here is what I have so far
Code:
n n-p+1 j-1
Sigma Sigma Sigma(C) = Sigma (C) Sigma (j-1-i) = ...
p=2 i=1 k=i
then I break up the double sums on sums of j, -1, and i.
How do I get around it?
Thanks a lot.