-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsupple.html
More file actions
100 lines (83 loc) · 3.91 KB
/
supple.html
File metadata and controls
100 lines (83 loc) · 3.91 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
<HTML>
<HEAD>
<title>Applied Algorithms@PKU</title>
<STYLE>
TABLE { border-collapse: collapse; }
TD,TH { vertical-align: top; padding: 0ex 0.5em; }
TD { padding-bottom: 1ex; }
TR.synopsis { display: none; cursor: pointer; }
TD.synopsis { border: solid; background-color: #ffff99; }
.toggle { cursor: pointer; }
.toggle:hover { background-color: #ffff99; }
.plusminus { color: blue; }
.odd { background-color: #dddddd; } <!-- good purple: ded7ee -->
.even { background-color: #ffffff; } <!--purple: eecdff yellow: e8ffd9-->
</STYLE>
<SCRIPT SRC="toggle.js" TYPE="text/javascript"></SCRIPT>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-19406470-3']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</HEAD>
<BODY>
<!-- try to change the frame color, but it doesn't work.
<iframe style="float: right;" src="gcalendar-wrapper.php?showTabs=0&mode=AGENDA&height=500&wkst=1&bgcolor=%23FFFFFF&src=tj1g4c6cuk4m6sbcg3h28kq2ss%40group.calendar.google.com&color=%237A367A&ctz=America%2FNew_York" style=" border-width:0 " width="400" height="500" frameborder="0" scrolling="no"></iframe>
-->
<!-- this was live during semester, but not so useful anymore -->
<!--<iframe style="float: right;" src="https://www.google.com/calendar/embed?showTabs=0&mode=AGENDA&height=500&wkst=1&bgcolor=%23FFFFFF&src=tj1g4c6cuk4m6sbcg3h28kq2ss%40group.calendar.google.com&color=%237A367A&ctz=America%2FNew_York" style=" border-width:0 " width="400" height="500" frameborder="0" scrolling="no"></iframe>-->
<h1>Applied Algorithms@PKU</h1>
<h2>Prof. <a href="http://www.faculty.idc.ac.il/tami/">Tami Tamir</a>
TA: Muge Chen</h2>
<HR>
<SPAN STYLE="font-size: large">
[<a href="index.html">Home</a>]
[<a href="lectures.html">Lectures</a>]
[<a href="hmwk.html">Assignments</a>]
[Supplementary Material]
</font>
</SPAN>
<HR>
Here is some supplementary material for the course.
<TABLE STYLE="clear: right;">
<TR class="odd">
<TD><a href="schedulingsurvey.pdf">Scheduling Survey</a></TD>
</TR>
<TR>
<TD><a href="supplementary1.pdf">Proofs and comments for lectures 1 and 2.</A></TD>
</TR>
<TR class="odd">
<TD><a href="LPT Analysis.pdf">LPT Analysis</a></TD>
</TR>
<TR >
<TD><a href="supplementaryJuly6.pdf">proofs for lecture 4</a></TD>
</TR>
<TR class="odd">
<TD><a href="FacLoc2.pdf">Proofs and examples - lecture 5</a></TD>
</TR>
<TR >
<TD><a href="supplementary_packing.pdf">Proofs - Packing unit.</a></TD>
</TR>
<TR class="odd">
<TD><a href="BP_harmonic_Lee.pdf">Paper on Harmonic-k algorithm (Bonus material - not for the exam)</a></TD>
</TR>
<TR >
<TD><a href="kahoot facloc.pdf">Kahoot quiz on Facility location - Q &A</a></TD>
</TR>
<TR class="odd">
<TD><a href="kahoot packing.pdf">Kahoot quiz on Packing - Q &A</a></TD>
</TR>
<TR >
<TD><a href="AGT1supp.pdf">Proofs and examples - Algorithmic game theory - part 1</a></TD>
</TR>
<TR class="odd">
<TD><a href="AGT2supp.pdf">Algorithmic game theory - part 2</a></TD>
</TR>
</table>
</BODY>
</HTML>