Skip to content

Update index.html to make pdfs open in new tab #2

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
20 changes: 10 additions & 10 deletions slides/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -49,31 +49,31 @@ <h2 id="schedule-and-slides"><a name="introduction"></a>Schedule and Slides</h2>
<td>Tue, Aug. 24</td>
<td>Intro to Course</td>
<td></td>
<td>[<a href="./courseintroduction.pptx">pptx</a>], <a href="./courseintroduction.pdf">[pdf]</a></td>
<td>[<a href="./courseintroduction.pptx">pptx</a>], <a href="./courseintroduction.pdf" target="_blank">[pdf]</a></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Thu, Aug. 26</td>
<td>M1: Div. and Con. - Sorting</td>
<td>Insertion Sort, Mergesort <br/> (Readings: CLRS Ch. 2</td>
<td><a href="./sorting-intro-f21.pptx">[ppt]</a>, <a href="./sorting-intro-f21.pdf">[pdf]</a></td>
<td><a href="./sorting-intro-f21.pptx">[ppt]</a>, <a href="./sorting-intro-f21.pdf" target="_blank">[pdf]</a></td>
<td></td>
</tr>
<tr class="odd">
<td>2</td>
<td>Tue, Aug. 31</td>
<td></td>
<td>Quicksort <br/> (Readings: CLRS Ch. 7 thru p. 175)</td>
<td><a href="./quicksort-f21.pptx">[pptx]</a>, <a href="./quicksort-f21.pdf">[pdf]</a></td>
<td><a href="./quicksort-f21.pptx">[pptx]</a>, <a href="./quicksort-f21.pdf" target="_blank">[pdf]</a></td>
<td></td>
</tr>
<tr class="even">
<td></td>
<td>Thu, Sep. 2</td>
<td>M2: Div. and Con. - Recurrence Relations</td>
<td>Solving Recurrences pt. 1 <br/> Readings: CLRS Ch. 4.3-4.5</td>
<td><a href="./recurrences.pptx">[pptx]</a>, [<a href="./recurrences.pdf">pdf</a>]</td>
<td><a href="./recurrences.pptx">[pptx]</a>, [<a href="./recurrences.pdf" target="_blank">pdf</a>]</td>
<td></td>
</tr>
<tr class="odd">
Expand All @@ -89,23 +89,23 @@ <h2 id="schedule-and-slides"><a name="introduction"></a>Schedule and Slides</h2>
<td>Thu, Sep. 9</td>
<td>M3: Div. and Con. - Advanced</td>
<td>Trominos and Closest Pair of Points <br/> Readings: CLRS Ch. 33.4</td>
<td><a href="./DivAndCon_Advanced_1.pptx">pptx</a>, <a href="./DivAndCon_Advanced_1.pdf">pdf</a></td>
<td><a href="./DivAndCon_Advanced_1.pptx">pptx</a>, <a href="./DivAndCon_Advanced_1.pdf" target="_blank">pdf</a></td>
<td></td>
</tr>
<tr class="odd">
<td>4</td>
<td>Tue, Sep. 14</td>
<td></td>
<td>Matrix Multiply, Quickselect, Median of Medians <br/> Readings: CLRS Ch. 4.2, Ch. 9</td>
<td><a href="./DivAndCon_Advanced_2.pptx">pptx</a>, <a href="./DivAndCon_Advanced_2.pdf">pdf</a></td>
<td><a href="./DivAndCon_Advanced_2.pptx">pptx</a>, <a href="./DivAndCon_Advanced_2.pdf" target="_blank">pdf</a></td>
<td>M2: Recurrence Relations</td>
</tr>
<tr class="even">
<td></td>
<td>Thu, Sep. 16</td>
<td>M4: Graphs - BFS and DFS</td>
<td>BFS <br/> Readings: CLRS 22.1-22.2</td>
<td><a href="./graphs-bfs-f21.pptx">pptx</a>, <a href="./graphs-bfs-f21.pdf">pdf</a></td>
<td><a href="./graphs-bfs-f21.pptx">pptx</a>, <a href="./graphs-bfs-f21.pdf" target="_blank">pdf</a></td>
<td></td>
</tr>
<tr class="odd">
Expand All @@ -121,7 +121,7 @@ <h2 id="schedule-and-slides"><a name="introduction"></a>Schedule and Slides</h2>
<td>Thu, Sep. 23</td>
<td></td>
<td>DFS, Topo-sort, SCC <br/> Readings: CLRS 22.3-22.5</td>
<td><a href="./graphs-dfs-f21.pptx">[pptx]</a>, <a href="./graphs-dfs-f21.pdf">pdf</a></td>
<td><a href="./graphs-dfs-f21.pptx">[pptx]</a>, <a href="./graphs-dfs-f21.pdf" target="_blank">pdf</a></td>
<td></td>
</tr>
<tr class="odd">
Expand All @@ -137,15 +137,15 @@ <h2 id="schedule-and-slides"><a name="introduction"></a>Schedule and Slides</h2>
<td>Thu, Sep. 30</td>
<td>M5: Graphs - Kruskal’s and Find-Union</td>
<td>Implementation of Find-Union D.S.</td>
<td><a href="./kruskal-find-union.pptx">pptx</a>, <a href="./kruskal-find-union.pdf">pdf</a></td>
<td><a href="./kruskal-find-union.pptx">pptx</a>, <a href="./kruskal-find-union.pdf" target="_blank">pdf</a></td>
<td>M4: BFS / DFS Written Problems</td>
</tr>
<tr class="odd">
<td>7</td>
<td>Tue, Oct. 5</td>
<td>M6: Graphs - Prim’s and Dijkstra’s</td>
<td>Prim,Dijkstra,Indirect Heaps</td>
<td><a href="./dijkstraAndPrim.pptx">pptx</a>, <a href="./dijkstraAndPrim.pdf">pdf</a></td>
<td><a href="./dijkstraAndPrim.pptx">pptx</a>, <a href="./dijkstraAndPrim.pdf" target="_blank">pdf</a></td>
<td></td>
</tr>
<tr class="even">
Expand Down