Question: CountValuesLessThanT Input: a 1 , a 2 ,...,a n n, the length of the sequence. T, a target value. Output: The number of values in
CountValuesLessThanT Input: a1, a2,...,an n, the length of the sequence. T, a target value. Output: The number of values in the sequence that are less than T. count = 0 For i = 1 to n If ( ai < T ), count := count + 1 End-for Return( count )
(a) Characterize the asymptotic growth of the worst-case time complexity of the algorithm. Justify your answer.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
