BrainFuck part 11 - Iterative and recursive ways

DPAmar
8,043 views

Open Source Your Knowledge, Become a Contributor

Technology knowledge has to be shared and made accessible for free. Join the movement.

Create Content

Conclusion

The iterative way is quite easy to implement using BF.

The recursive way can be used as well, even the tail-recursive one.

However, the tail-recursive way is probably better than the non-tail one. Indeed, without function calls in our language, the recursion is based on while...loop structures

  • the tail-recursive way looks like a loop. Actually, many compilers optimize tail-recursive codes into loops
  • the non-tail-recursive way is also possible but forces the code to get executed over a virtually large portion of our memory

Again, tail-recursive is not iterative way: solution is built using solutions for smaller problems, and not from a small problem getting bigger and bigger.

Open Source Your Knowledge: become a Contributor and help others learn. Create New Content