counting number of (overlapping) occurances

J

John

I have two strings S1 and S2. I want to know how many times
S2 occurs inside S1.

For instance

if S1 = "AAAA"
and S2 = "AA"

then the count is 3. Is there an easy way to do this in python?
I was trying to use the "count" function but it does not do
overlapping counts it seems.

Thanks,
--j
 
P

Paul Rubin

John said:
if S1 = "AAAA"
and S2 = "AA"

then the count is 3. Is there an easy way to do this in python?
I was trying to use the "count" function but it does not do
overlapping counts it seems.

len([1 for i in xrange(len(s1)) if s1[i:].startswith(s2)])
 
J

John

Thanks a lot,

This works but is a bit slow, I guess I'll have to live with it.
Any chance this could be sped up in python?

Thanks once again,
--j
 
P

Paul Rubin

John said:
This works but is a bit slow, I guess I'll have to live with it.
Any chance this could be sped up in python?

Whoops, I meant to say:

len([1 for i in xrange(len(s1)) if s1.startswith(s2,i)])

That avoids creating a lot of small strings.

If s1 is large you may want to use fancy algorithms like Boyer-Moore
string search. If s2 is also large, you could have some kind of
finite state machine scan through s1 so it recognizes overlapping
occurrences of s2 in parallel. There might be some way to combine
that with Boyer-Moore.
 
B

Ben Cartwright

John said:
This works but is a bit slow, I guess I'll have to live with it.
Any chance this could be sped up in python?

Sure, to a point. Instead of:

def countoverlap(s1, s2):
return len([1 for i in xrange(len(s1)) if s1[i:].startswith(s2)])

Try this version, which takes smaller slices (resulting in 2x-5x speed
increase when dealing with a large s1 and a small s2):

def countoverlap(s1, s2):
L = len(s2)
return len([1 for i in xrange(len(s1)-L+1) if s1[i:i+L] == s2])

And for a minor extra boost, this version eliminates the list
comprehension:

def countoverlap(s1, s2):
L = len(s2)
cnt = 0
for i in xrange(len(s1)-L+1):
if s1[i:i+L] == s2:
cnt += 1
return cnt

Finally, if the execution speed of this function is vital to your
application, create a C extension. String functions like this one are
generally excellent candidates for extensionizing.

--Ben
 
A

Alex Martelli

John said:
Thanks a lot,

This works but is a bit slow, I guess I'll have to live with it.
Any chance this could be sped up in python?

Sure (untested code):

def count_with_overlaps(needle, haystack):
count = 0
pos = 0
while True:
where = haystack.index(needle, pos)
if where == -1: return count
count += 1
pos = where + 1


Alex
 
A

Alex Martelli

Alex Martelli said:
Sure (untested code):

def count_with_overlaps(needle, haystack):
count = 0
pos = 0
while True:
where = haystack.index(needle, pos)

Oops -- 'find', not 'index' -- sorry (it WAS untested;-).
if where == -1: return count
count += 1
pos = where + 1


Alex
 
S

Steven D'Aprano

Thanks a lot,

This works but is a bit slow, I guess I'll have to live with it.
Any chance this could be sped up in python?

I don't know. What is it?

You should always quote enough of the previous poster's message to give
context. Messages sometimes go missing in Usenet, and people won't have
the foggiest idea what you are talking about.
 
F

Fredrik Lundh

Steven D'Aprano wrote
You should always quote enough of the previous poster's message to give
context. Messages sometimes go missing in Usenet, and people won't have
the foggiest idea what you are talking about.

one would think that given how many Pythoneers we now have working
for google, at least one of them could go fix the horridly broken posting
interface in googlegroups...

:::

for those who use googlegroups and prefer to make a least a little sense
to people read this newsgroup/mailing list using other tools, please click
"show options" and use the "reply" link at the top of the message instead
of the link with the same name at the bottom.

</F>
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,581
Members
45,057
Latest member
KetoBeezACVGummies

Latest Threads

Top