Skip to content

Commit

Permalink
Merge pull request ericdrowell#41 from cristaloleg/patch-1
Browse files Browse the repository at this point in the history
Added TimSort
  • Loading branch information
ericdrowell committed Mar 16, 2015
2 parents b862f5a + 70aced2 commit 6e9f835
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions Tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,14 @@ <h2 id="sorting">Sorting</h2>
<td><code class="green">O(n log(n))</code></td>
<td><code class="red">O(n)</code></td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Timsort">Timsort</a></td>
<td>Array</td>
<td><code class="green">O(n)</code></td>
<td><code class="green">O(n log(n))</code></td>
<td><code class="green">O(n log(n))</code></td>
<td><code class="red">O(n)</code></td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Heapsort">Heapsort</a></td>
<td>Array</td>
Expand Down

0 comments on commit 6e9f835

Please sign in to comment.