Skip to content

Commit

Permalink
Merge pull request ericdrowell#72 from BartMassey/master
Browse files Browse the repository at this point in the history
Fixed some Heap stuff and a typo
  • Loading branch information
ericdrowell committed Mar 16, 2015
2 parents b901049 + 957cdf7 commit 1357484
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -383,11 +383,11 @@ <h2 id="data-structures">Data Structures</h2>
</tbody>
</table>

<h2 id="heaps">Heaps</h2>
<h2 id="heaps">Max Heaps</h2>
<table class="table table-bordered table-striped">
<thead>
<tr>
<th>Heaps</th>
<th>Max Heap</th>
<th colspan="7">Time Complexity</th>
</tr>
<tr>
Expand Down Expand Up @@ -436,10 +436,10 @@ <h2 id="heaps">Heaps</h2>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Binomial_heap">Binomial Heap</a></td>
<td><code>-</code></td>
<td><code rel="tooltip" title="With aux pointer" class="green">O(1)*</code></td>
<td><code class="yellow">O(log(n))</code></td>
<td><code class="yellow">O(log(n))</code></td>
<td><code class="yellow">O(log(n))</code></td>
<td><code class="yellow">O(log(n))</code></td>
<td><code rel="tooltip" title="Amortized" class="green">O(1)*</code></td>
<td><code class="yellow">O(log(n))</code></td>
<td><code class="yellow">O(log(n))</code></td>
</tr>
Expand Down

0 comments on commit 1357484

Please sign in to comment.