1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2024-11-12 21:09:01 +00:00

Merge pull request #26 from kariya-mitsuru/find_first_of-doc

[algorithm.find_first_of] fix find_first_of document(Complexity)
This commit is contained in:
Bolero MURAKAMI 2013-08-27 02:09:43 -07:00
commit c9212fe65b

View file

@ -51,7 +51,7 @@ Examples
Complexity
========================================
| At most ``(last2 - first2) * (last1 - first1 - (last2 - first2) + 1)`` applications of the corresponding predicate.
| At most ``(last1 - first1) * (last2 - first2)`` applications of the corresponding predicate.
| Recursive function invocations in *O(logN)* (logarithmic) depth.
Header