Question: Question# 02: Given the following code fragment What is the time complexity (as operations count) of the function in the worst case? Express the growth
Question# 02: Given the following code fragment
- What is the time complexity (as operations count) of the function in the worst case?
- Express the growth rate of the function in Big O notation.
- Prove that T(n) is O(g(n))
| Operations | Times | |
| sum = 0 | C1 | |
| for(int i = 1; i <=n; i++) | C2 | |
| for(int j =1; j<=n; j++) | C3 |
|
| sum +=i*j; | C4 |
|
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
