Can every recursive process be transformed into an iterative process?
问题 I was reading the book, Structure and Interpretation of Computer Programs , where in it tells about the distinction between a recursive procedure and recursive process, and similarly between iterative procedure and iterative process. So, a recursive procedure could still generate an iterative process. My question is: given a procedure which generates a recursive process, can you always write another procedure that achieves the same result but generates an iterative process? The specific