I need help writing a recursive function which detects whether a string is a palindrome. But i can't use any loops it must be recursive. Can anyone help show me how this is done. I need to learn this for an upcoming midterm. Im using Python.
closed as not a real question by Tichodroma, Piotr Gwiazda, bažmegakapa, M42, S.L. Barth Oct 19 '12 at 9:33
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.
|
From a general algorithm perspective, the recursive function has 3 cases: 1) 0 items left. Item is a palindrome, by identity. 2) 1 item left. Item is a palindrome, by identity. 3) 2 or more items. Remove first and last item. Compare. If they are the same, call function on what's left of string. If first and last are not the same, item is not a palindrome. The implementation of the function itself is left as an exercise to the reader :) |
||||
|
|
And here is the best one liner
|
||||
|
|
|
If a string is zero or one letters long, it's a palindrome. If a string has the first and last letters the same, and the remaining letters (I think it's a Now, write that as a palindrome function that takes a string. It will call itself. |
|||
|
|
|
Here's another viewpoint A palindromic string is
Also, note that you may be given a proper English sentence "Able was I ere I saw Elba." with punctuation. Your palindrome checker may have to quietly skip punctuation. Also, you may have to quietly match without considering case. This is slightly more complex.
And, by definition, a zero-length string is a palindrome. Also a single-letter string (after removing punctuation) is a palindrome. |
|||
|
|
|
Since we're posting code anyway, and no one-liner has been posted yet, here goes:
|
|||||||||
|
|
The function should expect a string. If there is more then one letter in the string compare the first and the last letter. If 1 or 0 letters, return true. If the two letters are equal call the function then again with the string, without the first and the last letter. If they are not equal return false.
|
|||
|
|
|
Here's a way you can think of simple recursive functions... flip around the problem and think about it that way. How do you make a palindrome recursively? Here's how I would do it...
Then you can flip it around to build the test. |
|||
|
|
|
||||
|
My solution
|
|||
|
|
|
||||
|
|
|
Here is C version, if anyone happens to land here searching for C code!
Call as:
|
||||
|
|