-
Notifications
You must be signed in to change notification settings - Fork 737
/
algoxy-en.tex
121 lines (83 loc) · 2.83 KB
/
algoxy-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
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
119
120
121
\documentclass[b5paper,twoside]{book}
\usepackage[nomarginpar
%, margin=.5in
, top=1.5cm, bottom=1.5cm, left=2cm, right=2cm
]{geometry}
% ==================== Book flag==========================
\global\let\wholebook=\relax %without relax, we build article, else book
\usepackage[en]{prelude}
\setcounter{page}{1}
\graphicspath{
{img/}
{others/preface/}
{datastruct/tree/binary-search-tree/}
{sorting/insertion-sort/}
{datastruct/tree/red-black-tree/}
{datastruct/tree/AVL-tree/}
{datastruct/tree/trie/}
{datastruct/tree/suffix-tree/}
{datastruct/tree/B-tree/}
{datastruct/heap/binary-heap/}
{sorting/select-sort/}
{sorting/dc-sort/}
{datastruct/heap/other-heaps/}
{datastruct/elementary/queue/}
{datastruct/elementary/sequence/}
{search/}
{others/appendix/list/}
}
\makeindex
\begin{document}
% set PDF properties
\hypersetup{pdftitle={algoxy},%
pdfauthor={[email protected]},%
pdfsubject={Computer Science},%
pdfkeywords={Algorithm, Programming}}
% ================================================================
% COVER PAGE
% ================================================================
\title{
{\bf \Huge Elementary Functional Algorithms}
\centering
\scalebox{0.4}{\includegraphics{img/fibonacci-spiral}}
}
\author{Xinyu LIU
\thanks{{\bfseries Xinyu LIU} \newline
Version: $\displaystyle e = \sum \limits _{n=0}^{\infty }{\frac {1}{n!}} = 1 + {\frac {1}{1}}+{\frac {1}{1\cdot 2}}+{\frac {1}{1\cdot 2\cdot 3}}+\cdots = 2.718283$ \newline
\url{https://github.com/liuxinyu95} \newline
}}
\maketitle
\frontmatter
\subimport{others/preface/}{preface-en.tex}
\newpage
\tableofcontents
\mainmatter
\subimport{others/appendix/list/}{list-en.tex}
\subimport{datastruct/tree/binary-search-tree/}{bstree-en.tex}
\subimport{sorting/insertion-sort/}{isort-en.tex}
\subimport{datastruct/tree/red-black-tree/}{rbtree-en.tex}
\subimport{datastruct/tree/AVL-tree/}{avltree-en.tex}
\subimport{datastruct/tree/trie/}{trie-en.tex}
\subimport{datastruct/tree/B-tree/}{btree-en.tex}
\subimport{datastruct/heap/binary-heap/}{bheap-en.tex}
\subimport{sorting/select-sort/}{ssort-en.tex}
\subimport{datastruct/heap/other-heaps/}{kheap-en.tex}
\subimport{datastruct/elementary/queue/}{queue-en.tex}
\subimport{datastruct/elementary/sequence/}{sequence-en.tex}
\subimport{sorting/dc-sort/}{dcsort-en.tex}
\subimport{search/}{search-en.tex}
\appendix
\subimport{others/appendix/rbt-del/}{rbt-del-en.tex}
\subimport{others/appendix/avltree/}{avl-proof-en.tex}
%\subimport{datastruct/tree/suffix-tree/}{stree-en.tex}
\chapter{Answers}
\label[appendix]{ch:answers}
\phantomsection
\shipoutAnswer
\subimport{others/appendix/}{bib-en.tex}
\input{fdl-1.3.tex}
\backmatter
\phantomsection
\addcontentsline{toc}{chapter}{Index}
\printindex
\end{document}