forked from liuxinyu95/AlgoXY
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathalgoxy-zh-cn.tex
124 lines (87 loc) · 2.91 KB
/
algoxy-zh-cn.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
122
123
124
\documentclass[zihao=5, b5paper, twoside, heading=true]{ctexbook}
\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, esle book
\usepackage[cn]{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={liuxinyu95@gmail.com},%
pdfsubject={Computer Science},%
pdfkeywords={Algorithm, Programming}}
% ================================================================
% COVER PAGE
% ================================================================
\title{
{\bf \Huge 基本算法}
\centering
\scalebox{0.4}{\includegraphics{img/fibonacci-spiral}}
}
\author{刘新宇
\thanks{{\bfseries 刘新宇} \newline
Version: 0.6180339887498949 \newline
Email: liuxinyu95@gmail.com \newline
}}
\maketitle
% ================================================================
% Content
% ================================================================
\tableofcontents
\newpage
%\part{前言}
\subimport{others/preface/}{preface-zh-cn.tex}
\subimport{others/appendix/list/}{list-zh-cn.tex}
%\part{树}
\subimport{datastruct/tree/binary-search-tree/}{bstree-zh-cn.tex}
\subimport{sorting/insertion-sort/}{isort-zh-cn.tex}
\subimport{datastruct/tree/red-black-tree/}{rbtree-zh-cn.tex}
\subimport{datastruct/tree/AVL-tree/}{avltree-zh-cn.tex}
\subimport{datastruct/tree/trie/}{trie-zh-cn.tex}
\subimport{datastruct/tree/B-tree/}{btree-zh-cn.tex}
%\part{堆}
\subimport{datastruct/heap/binary-heap/}{bheap-zh-cn.tex}
\subimport{sorting/select-sort/}{ssort-zh-cn.tex}
\subimport{datastruct/heap/other-heaps/}{kheap-zh-cn.tex}
%\part{队列和序列}
\subimport{datastruct/elementary/queue/}{queue-zh-cn.tex}
\subimport{datastruct/elementary/sequence/}{sequence-zh-cn.tex}
%\part{排序和搜索}
\subimport{sorting/dc-sort/}{dcsort-zh-cn.tex}
\subimport{search/}{search-zh-cn.tex}
%\part{附录}
\appendix
%\appendixpage
\noappendicestocpagenum
\addappheadtotoc
\subimport{others/appendix/rbt-del/}{rbt-del-zh-cn.tex}
\subimport{others/appendix/avltree/}{avl-proof-zh-cn.tex}
%\subimport{datastruct/tree/suffix-tree/}{stree-zh-cn.tex}
\subimport{others/appendix/}{bib-zh-cn.tex}
%\input{fdl-1.3.tex}
\printindex
\end{document}