Do you know a tool that automatically refactors a method with a single loop into a recursive method, preferably in Java?
This is for teaching purposes.
|
Do you know a tool that automatically refactors a method with a single loop into a recursive method, preferably in Java? This is for teaching purposes. |
|||||
|
|
I don't think such a tool exists, since usually refactoring aims at increasing performance, not decreasing it (which is the case when using recursive methods instead of loops). If it is for teaching purposes, why not make the students create the tool that would do that? This way, they could learn at the same time recursion and parsing. I don't know if the recursification can be automated, but here's what the transformation should look like. Let's take a generic for loop, in pseudo-code, for the sake of demonstration:
The loop is composed of four parts: A recursive version of this method should be decomposed in two parts: one for initialization, and the other one to actually perform the loop:
I didn't think about the problem enough to be 100% sure that this would work in all cases, but for simple loops this should be correct. Of course, this transformation can easily be adapted to other types of loops (while, do while). |
||||
|
|
I'm not entirely sure that this is even possible in the generic sense, as it seems to me like a variation of the halting problem. |
|||||||||
|
|
If you are doing this for teaching purposes I would think you can get away with doing it for a very limited set of cases. So could you just write something that took
and transformed it to
I'm sure you can sort out the pseudocode for yourself. |
|||
|
|