What this notation T(n)=Θ(n2) means

For a given function g(n), we denote by Θ(g(n)) the set of functions 

Θ(g(n)) = {f(n): there exist positive constants c1, c2 , and n0 such that 0≤c1g(n)≤f(n)≤c2g(n) for all n≥n0}.

We could write “f(n)∈Θ(g(n))” to indicate that f(n) is a member of Θ(g(n)).
Instead, we will usually write “f(n)=Θ(g(n))” to express the same notion. The abuse may at first appear confusing, but it has advantages.

相关文章:

  • 2021-12-10
  • 2021-11-27
  • 2021-08-12
  • 2021-10-19
  • 2021-05-07
  • 2021-11-28
  • 2021-12-18
  • 2021-11-30
猜你喜欢
  • 2022-03-06
  • 2021-08-06
  • 2022-12-23
  • 2022-12-23
  • 2021-08-29
  • 2021-07-21
  • 2022-01-18
相关资源
相似解决方案