释义 |
conversion to iteration conversion to iterationA transformation applied to functional programs to replacerecursion with iteration. A tail-recursive function can becompiled to an iterative loop where the recursive call becomesa jump back to the start and the parameters are held inregisters which are updated with new values each time aroundthe loop. See Iteration, Tail recursion optimisation. |