这里提到的最低限度的最小值是指什么??

递归总能够被彻底去除(编译器是在转变成汇编语言时完成递归去除的),但是这么做是相当冗长乏味的。一般方法是要求使用一个栈,而且仅当你能够把最低限度的最小值放到栈上时这个方法才值得一用。

Recursion can always be completely removed (obviously, the compiler does so in converting to assembly language),but doing so can be quite tedious. The general strategy requires using a stack and is obviously worthwhile only if youcan manage to put only the bare minimum on the stack.

把对应的英文原文拿出来问,这种不通的翻译谁知道是在说什么。但是这写得根本不对,谁说编译器会做“递归去除”。什么语言?反正java c c++都不会。