MCQOPTIONS
Saved Bookmarks
| 1. |
What is the time complexity of the following recursive function?int ComputFun (int n){if(n |
| A. | θ(n) |
| B. | θ(log n) |
| C. | θ(n log n) |
| D. | θ (log log n) |
| Answer» E. | |