I'm blanking out trying to write a simple function to count the string length recursively.

I can do sums, fibonacci, and factorial easy but I'm trying to create the simplest fucntion with only one parameter, I don't like having a second just as a counter index..

Can any post something small for me?

link|improve this question

I don't think you can do it using only one parameter, unless you're talking about global variables. – Dean Barnes Apr 14 '11 at 21:43
3  
@Dean: Of course you can. You just have to do tons of copying and non-tail recursion (not that tail recursion would help, it's not optimized away). But then again, you don't write this kind of code because of some real-world problem but as an exercise. – delnan Apr 14 '11 at 21:45
Sure you can -- all you need are string slicing, a return value, and addition. The base case is that the length of an empty string is zero. Hesitant to say more about something that smells like homework. – bgporter Apr 14 '11 at 21:47
As soon as I posted this it clicked that you could do it like Alberteddu's answer. – Dean Barnes Apr 14 '11 at 21:49
Not homework. This would be in some intro class ha. Thanks Alberteddu! – John Redyns Apr 15 '11 at 2:17
feedback

3 Answers

up vote 5 down vote accepted

Is this what you are looking for?

def recursiveLength(theString):
    if theString == '': return 0
    return 1 + recursiveLength(theString[1:])
link|improve this answer
2  
is tests identity not equality. It works, but relies on an implementation detail. – unholysampler Apr 14 '11 at 21:48
You are right. I corrected the answer. – Alberteddu Apr 14 '11 at 21:50
feedback

If it doesn't have to be tail-recursive:

def strlen(s):
  if s == '':
    return 0
  return 1 + strlen(s[1:])

It's pretty inefficient though.

link|improve this answer
feedback

This does it:

def length(s):
    return 0 if s == '' else 1 + length(s[:-1])

print length('hello world') # prints 11
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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