1.

What is the worst-case number of arithmetic operations performed by recursive binary search on a sorted array of size n?

A. θ(n)
B. θ(√n)
C. θ(log2(n))
D. θ(n2)
Answer» D. θ(n2)


Discussion

No Comment Found