mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-25 00:43:44 +00:00
rebuid doc: for find_first_of
This commit is contained in:
parent
c9212fe65b
commit
72f335f35a
2 changed files with 2 additions and 2 deletions
|
@ -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
|
||||
|
|
|
@ -142,7 +142,7 @@
|
|||
<div class="section" id="complexity">
|
||||
<h2>Complexity<a class="headerlink" href="#complexity" title="Permalink to this headline">¶</a></h2>
|
||||
<div class="line-block">
|
||||
<div class="line">At most <tt class="docutils literal"><span class="pre">(last2</span> <span class="pre">-</span> <span class="pre">first2)</span> <span class="pre">*</span> <span class="pre">(last1</span> <span class="pre">-</span> <span class="pre">first1</span> <span class="pre">-</span> <span class="pre">(last2</span> <span class="pre">-</span> <span class="pre">first2)</span> <span class="pre">+</span> <span class="pre">1)</span></tt> applications of the corresponding predicate.</div>
|
||||
<div class="line">At most <tt class="docutils literal"><span class="pre">(last1</span> <span class="pre">-</span> <span class="pre">first1)</span> <span class="pre">*</span> <span class="pre">(last2</span> <span class="pre">-</span> <span class="pre">first2)</span></tt> applications of the corresponding predicate.</div>
|
||||
<div class="line">Recursive function invocations in <em>O(logN)</em> (logarithmic) depth.</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
Loading…
Reference in a new issue