Social Sciences, asked by hinaafzal3170, 10 hours ago

which time complexity is
greater ???
O(10^3) , O(10^9)​

Answers

Answered by llXxarmygirlxXll
0

Answer:

When multiplying, the complexity will be greater than the original, but no more than the equivalence of multiplying something that is more complex. For example, O(n * log(n)) is more complex than O(n) but less complex than O(n²), because O(n²) = O(n * n) and n is more complex than log(n).

Similar questions