-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlectures.html
More file actions
118 lines (100 loc) · 4.01 KB
/
lectures.html
File metadata and controls
118 lines (100 loc) · 4.01 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
<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>]
[Lectures]
[<a href="hmwk.html">Assignments</a>]
[<a href="supple.html">Supplementary Material</a>]
</font>
</SPAN>
<HR>
<p><font size="+1">Lectures are 8–11:00 in
2nd Teaching Building 423 room.
<h2>Lectures Notes</h2>
<TABLE STYLE="clear: right;">
<TR class="odd">
<TD><a href="introduction<.pdf">Introduction</A></TD>
</TR>
<TR>
<TD><a href="StableM.pdf">Stable matching</A></TD>
</TR>
<TR class="odd">
<TD>
<a href ="scheduling1.pdf">
Scheduling Theory(1)
</A></TD>
</TR>
<TR>
<TD>
<a href ="scheduling2.pdf">
Scheduling Theory(2)
</A></TD>
</TR>
<TR class="odd">
<TD>
<a href ="facloc.pdf">
Facility Location
</A></TD>
</TR>
<TR>
<TD>
<a href ="packing.pdf">
Packing Problems
</A></TD>
</TR>
<TR class="odd">
<TD>
<a href ="agt_1.pdf">
Algorithmic Game Theory (1)
</A></TD>
</TR>
<TR>
<TD>
<a href ="agt_2.pdf">
Algorithmic Game Theory (2)
</A></TD>
</TR>
<TR class="odd">
<TD>
<a href ="review.pdf">
Review
</A></TD>
</TR>
</table>
</BODY>
</HTML>