Skip to content

Commit

Permalink
Converted all the HTML slides to pure ASCII, UNIX format
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronbloomfield committed Nov 11, 2014
1 parent e83a02d commit e18e2b3
Show file tree
Hide file tree
Showing 12 changed files with 5,875 additions and 5,869 deletions.
4 changes: 2 additions & 2 deletions slides/01-cpp.html
Original file line number Diff line number Diff line change
Expand Up @@ -754,15 +754,15 @@ <h2>Declaring mutually<br>recursive functions</h2>
```
#ifndef ODD_H
#define ODD_H
#include even.h
#include "even.h"
bool odd (int x);
#endif
```
- even.h:
```
#ifndef EVEN_H
#define EVEN_H
#include odd.h
#include "odd.h"
bool even (int x);
#endif
```
Expand Down
2 changes: 1 addition & 1 deletion slides/02-lists.html
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,7 @@ <h2>CS 2150 Roadmap</h2>
## Lists ADT
- A<sub>0</sub>, A<sub>1</sub>, A<sub>2</sub>, A<sub>3</sub>, ...
- size N
- empty list list of size 0
- empty list -- list of size 0
- A<sub>0</sub> is the first element
- A<sub>i</sub> follows A<sub>i-1</sub>
- position of element A<sub>i</sub> is i
Expand Down
4 changes: 3 additions & 1 deletion slides/03-numbers.html
Original file line number Diff line number Diff line change
Expand Up @@ -906,7 +906,9 @@ <h2>Floating Imprecision</h2>

<section data-markdown><script type="text/template">
## The bug fix...
> Two weeks before the incident, Army officials received Israeli data indicating some loss in accuracy after the system had been running for 8 consecutive hours. Consequently, Army officials modified the software to improve the system's accuracy. However, the modified software did not reach Dhahran until February 26, 1991 -- the day after the Scud incident.
> Two weeks before the incident, Army officials received Israeli data indicating some loss in accuracy after the system had been running for 8 consecutive hours.
> Consequently, Army officials modified the software to improve the system's accuracy.
> However, the modified software did not reach Dhahran until February 26, 1991 -- the day after the Scud incident.
>
> \- GAO Report
</script></section>
Expand Down
2 changes: 1 addition & 1 deletion slides/05-trees.html
Original file line number Diff line number Diff line change
Expand Up @@ -642,7 +642,7 @@ <h2>BST Height</h2>
- -1 means the left subtree is one longer than the right subtree
- "Unbalanced" trees
- A balance factor of -2 or 2
- Well fix the tree
- We'll fix the tree
- Will we ever hit -3 or 3?
</script></section>

Expand Down
Loading

0 comments on commit e18e2b3

Please sign in to comment.