vote up 3 vote down star

I was wondering if the 'find' method on strings was implemented with a linear search, or if python did something more sophisticated. The Python documentation doesn't discuss implementation details, so http://docs.python.org/library/stdtypes.html is of no help. Could someone please point me to the relevant source code?

flag

77% accept rate

3 Answers

vote up 4 vote down

You should be able to find it in Objects/stringlib/find.h, although the real code is in fastsearch.h.

link|flag
vote up 1 vote down

Looks like the algorithm used originates from Boyer-Moore-Horspool algorithm

link|flag

Your Answer

Get an OpenID
or

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