Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update tables.html with spelling fixes #43

Merged
merged 1 commit into from
Mar 16, 2015
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Update tables.html with spelling fixes
Spelling fixes:
Select Sort -> Selection Sort
Cartresian Tree -> Cartesian Tree
  • Loading branch information
caspervg committed Jun 3, 2013
commit 61b8c49e158ff2634f0af2d273526da58f598c24
4 changes: 2 additions & 2 deletions Tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ <h2 id="sorting">Sorting</h2>
<td><code class="green">O(1)</code></td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Selection_sort">Select Sort</a></td>
<td><a href="http://en.wikipedia.org/wiki/Selection_sort">Selection Sort</a></td>
<td>Array</td>
<td><code class="red">O(n^2)</code></td>
<td><code class="red">O(n^2)</code></td>
Expand Down Expand Up @@ -285,7 +285,7 @@ <h2 id="data-structures">Data Structures</h2>
<td><code class="yellow">O(n)</code></td>
</tr>
<tr>
<td><a href="https://en.wikipedia.org/wiki/Cartesian_tree">Cartresian Tree</a></td>
<td><a href="https://en.wikipedia.org/wiki/Cartesian_tree">Cartesian Tree</a></td>
<td><code>-</code></td>
<td><code class="green">O(log(n))</code></td>
<td><code class="green">O(log(n))</code></td>
Expand Down