2

Is there an example of an algorithm whose time complexity is strictly larger than Ackermann's function?

user2219896
  • 123
  • 4

1 Answers1

2

$A(n,n)$ is computable. So a trivial algorithm with complexity $O(A(n,n)^2)$ is the following:

  1. Compute $x = A(n,n)$.
  2. Loop $x^2$ times, doing nothing.
Steven
  • 29,419
  • 2
  • 28
  • 49