forked from liuxinyu95/AlgoXY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain-en.tex
83 lines (59 loc) · 2.07 KB
/
main-en.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
%\documentclass{article}
\documentclass[a4paper,twoside]{book} %this has problems
\input{common-en.tex}
\setcounter{page}{1}
% ==================== Book flag==========================
\global\let\wholebook=\relax %without relax, we build article, esle book
\graphicspath{
{img/}
{others/preface/}
{datastruct/tree/binary-search-tree/}
{datastruct/tree/red-black-tree/}
{datastruct/tree/AVL-tree/}
{datastruct/tree/trie/}
{datastruct/tree/suffix-tree/}
{datastruct/tree/B-tree/}
{datastruct/heap/binary-heap/}
}
\makeindex
\begin{document}
% set PDF properties
\hypersetup{pdftitle={algoxy},%
pdfauthor={[email protected]},%
pdfsubject={Computer Science},%
pdfkeywords={Algorithm, Programming}}
% ================================================================
% COVER PAGE
% ================================================================
\title{{\bf \Huge AlgoXY} elementary algorithms and data structures \newline
with imperative and functional implementation \newline
\newline
%\scalebox{1.2}{\includegraphics{images/clouds.eps}}
}
\author{Liu Xinyu
\thanks{{\bfseries Liu Xinyu } \newline
Draft version 2010, Beijing \newline
Email: [email protected] \newline
}}
\maketitle
% ================================================================
% Content
% ================================================================
%\newpage
\tableofcontents
\newpage
%\part{Introduction}
\input{others/preface/preface-en.tex}
\part{Trees}
\input{datastruct/tree/binary-search-tree/bstree-en.tex}
\input{datastruct/tree/red-black-tree/rbtree-en.tex}
\input{datastruct/tree/AVL-tree/avltree-en.tex}
\input{datastruct/tree/trie/trie-en.tex}
\input{datastruct/tree/suffix-tree/stree-en.tex}
\input{datastruct/tree/B-tree/btree-en.tex}
\part{Heaps}
\input{datastruct/heap/binary-heap/bheap-en.tex}
\part{Appendix}
\input{fdl-1.3.tex}
\printindex
\end{document}