Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
def abc(s):
    filter = [i for i in s.lower() if i in 'abcdefghijklmnopqrstuvwxyz']
    for i in range(len(filter) - 1):
        if filter[i] > filter[i+1]:
            return print(s, "is not abcdearian")
    return print(s,  "is abcdearian")


while True:
    try:
        s = input("String? ")
abc(s)

I'am having trouble making a recursive version of abc(s). Any ideas? Thanks in advance.

share|improve this question
wouldn't recursion be more like def abc(s): ... abc(subs)... return ? Specifically, I mean, for recursion you would need to call the function with some other argument inside its own body. – Nisan.H Nov 30 '12 at 0:50
Yes, that is correct. – Ace Nov 30 '12 at 0:55

3 Answers

up vote 3 down vote accepted

To make a recursive function you should find a way to split the problem into smaller and/or simpler subproblems that could be solve the same way:

#!/usr/bin/env python3
from string import ascii_lowercase

def abcdearian(s):
    return issorted_recursive([c for c in s.lower() if c in ascii_lowercase])

def issorted(L):
    return all(x <= y for x, y in zip(L, L[1:]))

def issorted_recursive(L):
    return L[0] <= L[1] and issorted_recursive(L[1:]) if len(L) > 1 else True

Here issorted_recursive() is a recursive function. The base case is len(L) <= 1 (a list with zero or one element is always sorted so return True in this case). In the recursive case (len(L) > 1) the list L is considered sorted if the first item is in the sorted order (L[0] <= L[1]) and the rest of the list (L[1:]) is also sorted. Each time the function receives smaller and smaller input until out of order element is found (L[0] > L[1]) or the base case is encountered and the function finishes.

Example

while True:
    s = input("String? ")
    if not s:
        break
    print("{} is {}abcdearian".format(s, "" if abcdearian(s) else "not "))

Input

    abc
    bac

Output

String? abc is abcdearian
String? bac is not abcdearian
String? 
share|improve this answer
Thank you for your time. Your answer is spot on. – Ace Nov 30 '12 at 5:52

The general idea is this: check if the first character is abcderian, then pass the rest of the string to abc again. I made abc(s) return true or false, you can change that to what you want.

def abc(s):
    if s == "":
        return True
    if s[0].lower() in "abcdefghijklmnopqrstuvwxyz":
        return abc(s[1:])
    return False
share|improve this answer
1  
That code is not equivalent. It will return True for ba, but False for XX – Niklas B. Nov 30 '12 at 1:04
Fixed, I think. – nair.ashvin Nov 30 '12 at 1:13
Nope, this code is still non-equivalent to the code in the question. – Óscar López Nov 30 '12 at 1:20
1  
Oh, woops, I completely misunderstood his code – nair.ashvin Nov 30 '12 at 1:23

Try this code, it's equivalent to the one posted in the question, but written in a recursive style:

from string import ascii_lowercase

def abc(s):
    f = [c for c in s.lower() if c in ascii_lowercase]
    if aux(f, 0):
        return s + " is abcdearian"
    else:
        return s + " is not abcdearian"

def aux(s, i):
    if i >= len(s)-1:
        return True
    elif s[i] > s[i+1]:
        return False
    else:
        return aux(s, i+1)

Use it like this:

while True:
    s = input("String? ")
    if not s:
        break
    print(abc(s))

Notice that I split the problem in two: first the, "main" function abc() takes care of filtering the string, calling the aux procedure with correct initial values and returning the result string at the end (alternatively: you could have returned a boolean, creating the result string elsewhere.)

The real work is done in the helper aux function, which recursively traverses the string checking if the "abcdearian" condition is true for all pairs of consecutive characters in the string. The way aux iterates over the string is efficient (putting aside the fact that we're using recursion), because it never creates additional intermediate strings with s[1:]. It's also an example of a tail-recursive algorithm, and it closely mirrors the structure of the iterative solution.

share|improve this answer
the code is not equivalent (.isalpha()). – J.F. Sebastian Nov 30 '12 at 1:29
@J.F.Sebastian you're right, I fixed it – Óscar López Nov 30 '12 at 1:32
@J.F.Sebastian on second thought ... why exactly isn't equivalent? can you provide a counterexample, please? – Óscar López Nov 30 '12 at 1:35
there is no lowercase in Python 3.3. You could use ascii_lowercase. Also abc() should return a boolean for proper separation of concern. – J.F. Sebastian Nov 30 '12 at 1:36
there is no guarantee that codepoints are in alphabetical order for non-ascii letters (str.isalpha() operates on Unicode strings in Python 3) – J.F. Sebastian Nov 30 '12 at 1:38

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.