-
Notifications
You must be signed in to change notification settings - Fork 6
/
notes.tex
31 lines (30 loc) · 851 Bytes
/
notes.tex
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
\input{preamble}
\def\PREAMBLE{PREAMBLE}
\title{Notes for Algorithms: Design and Analysis}
\author{Jing LI\\pkuyplijing@gmail.com}
\begin{document}
\pagestyle{empty}
\hypersetup{pageanchor=false}
\maketitle
\begin{center}
\emph{Sincere gratitude to Professor Tim Roughgarden \\for offering such a wonderful course.}
\end{center}
\tableofcontents
\newpage
\hypersetup{pageanchor=true}
\pagenumbering{arabic}
\pagestyle{headings}
\addtocontents{toc}{\protect\thispagestyle{empty}}
\input{Introduction}
\input{DivideConquer}
\input{RandomizedAlgorithms}
\input{Graphs}
\input{DataStructures}
\input{GreedyAlgorithms}
\input{DynamicProgramming}
\input{NPCompleteness}
\clearpage%somehow needed so that list of algorithms in toc jumps to the correct page.
\phantomsection
\addcontentsline{toc}{chapter}{\listalgorithmname}
\listofalgorithms
\end{document}