The evolved process looks like a tree, where the branches split at each level.

In general, the number of steps will be proportional to the number of nodes in the tree, while the space will be proportional to the maximum depth of the tree.

This is why tree recursion can be exponentially expensive in time but only linearly expensive in space.

See also