Space complexity of recursive algorithm
问题 I was asked at an interview, the efficient way to solve a problem checking for pallindrome. Now i can do two things: starting from i = 0 to i = n/2 and comparing ith and n-ith character to be equal. I can use recursion to check if first and last are same and the rest of the string is a pallindrome. The second is recursive. My question is what is the difference in the space complexity of an algorithm's recursive and non-recursive versions? 回答1: Have a read at http://www.codeproject.com