Question: Question# 01: Given the following code fragment What is the time complexity (as operations count) of the function in the worst case? Express the growth
Question# 01: 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 | |
| i = 1; | C1 | |
| sum = 0; | C2 | |
| while (i <= n) { | C3 | |
| i = i +1 ; | C4 | |
| sum = sum+1; | C5 | |
| } |
Step by Step Solution
There are 3 Steps involved in it
1 Expert Approved Answer
Step: 1 Unlock
Question Has Been Solved by an Expert!
Get step-by-step solutions from verified subject matter experts
Step: 2 Unlock
Step: 3 Unlock
