I am new Haskell and still trying to understand some of the basics. When writing recursive functions, I naturally write them in a recursive or tail recursive way without consciously selecting one over the other.
My question is:
Given any recursive function, is there an easy way to convert it to tail-recursive?
Given a tail-recursive function, is there an easy way to convert it to recursive?
Example Function
addOne [] = []
addOne (x:xs) = (x+1):addOne xs
Also, when writing a function, what is an easy way to tell if tail recursion is more appropriate over the alternative?
I appreciate any clarification.
Many thanks in advance!
