Skip to content

Commit

Permalink
Merge pull request #58 from rahulc93/master
Browse files Browse the repository at this point in the history
Added an entry for Stack under Data Structures
  • Loading branch information
ericdrowell committed Mar 16, 2015
2 parents ef8c518 + a461736 commit a846947
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Tables.html
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,18 @@ <h2 id="data-structures">Data Structures</h2>
<td><code class="red">O(n)</code></td>
<td><code class="red">O(n)</code></td>
<td><code class="yellow">O(n)</code></td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Stack_(abstract_data_type)">Stack</a></td>
<td><code class="green">O(n)</code></td>
<td><code class="red">O(n)</code></td>
<td><code class="red">O(1)</code></td>
<td><code class="red">O(1)</code></td>
<td><code class="green">O(n)</code></td>
<td><code class="red">O(n)</code></td>
<td><code class="red">O(1)</code></td>
<td><code class="red">O(1)</code></td>
<td><code class="yellow">O(n)</code></td>
</tr>
<tr>
<td><a href="http://en.wikipedia.org/wiki/Singly_linked_list#Singly_linked_lists">Singly-Linked List</a></td>
Expand Down

0 comments on commit a846947

Please sign in to comment.