Skip to content

Instantly share code, notes, and snippets.

@IvanVergiliev
Created June 21, 2021 16:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IvanVergiliev/3a444b7fd597fe97cca2d913237b30f2 to your computer and use it in GitHub Desktop.
Save IvanVergiliev/3a444b7fd597fe97cca2d913237b30f2 to your computer and use it in GitHub Desktop.
Exponential Tree Transformation Complexity
f(H) =
  f(H - 1) // for the first transform call
  +
  f(H - 1) // for the second transform call
= 2 * f(H - 1) =
= 2 * 2 * f(H - 2) = ... = 2 ^ (H - 1) * f(1) // unfolding further
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment