-
Notifications
You must be signed in to change notification settings - Fork 0
/
itan.tex
113 lines (77 loc) · 1.73 KB
/
itan.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
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
\documentclass [11pt]{book}
% packages
\usepackage{amsbsy}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage {bookmark}
\usepackage {color}
\usepackage{enumitem}
\usepackage {graphicx}
\usepackage {hyperref}
\usepackage {libertine}
\usepackage{listings}
\usepackage[parfill]{parskip}
\usepackage {xcolor}
%configurations
\definecolor{dkgreen}{rgb}{0,0.6,0}
\definecolor{gray}{rgb}{0.5,0.5,0.5}
\definecolor{mauve}{rgb}{0.58,0,0.82}
\hypersetup{colorlinks,urlcolor=blue}
\lstset{frame=tb,
language=Java,
aboveskip=3mm,
belowskip=3mm,
showstringspaces=false,
columns=flexible,
basicstyle={\small\ttfamily},
numbers=none,
numberstyle=\tiny\color{gray},
keywordstyle=\color{blue},
commentstyle=\color{dkgreen},
stringstyle=\color{mauve},
breaklines=true,
breakatwhitespace=true,
tabsize=3
}
%alias
\title {Notes of the Introduction To Algorithms}
\author {Kai Zhao}
\date {\today}
\begin {document}
\maketitle
\tableofcontents
%part 1
\part {Foundations}
%chapter 1
\chapter {The Role of Algorithms in Computing}
\include {chapter1/1_1}
%chapter 2
\chapter {Getting Started}
%chapter 3
\chapter {Growth of Functions}
%chapter 4
\chapter {Divide-and-conquer}
%chapter 5
\chapter {Probabilistic Analysis and Randomized Algorithms}
%part 2
\part {Sorting and Order Statistics}
%chapter 6
\chapter {Heapsort}
%part 3
\part {Data Structures}
%part 4
\part {Advanced Design and Analysis Techniques}
%part 5
\part {Advanced Data Structures}
\chapter {Data Structures for Disjoint Sets}
\include {chapter21/1}
%part 6
\part {Graph Algorithms}
\chapter {Minimum Spanning Tree}
\include {chapter23/1}
\include {chapter23/2}
%part 7
\part {Selected Topics}
%part 8
\part {Appendix: Mathematical Background}
\end {document}