-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmain.tex
More file actions
executable file
·44 lines (33 loc) · 1.07 KB
/
main.tex
File metadata and controls
executable file
·44 lines (33 loc) · 1.07 KB
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
%import template
\input{./styles/template.tex}
% DocInfo
\newcommand{\SUBJECT}{}
\newcommand{\TITLE}{Cheat Sheet Algorithmen und Datenstrukturen 2}
\begin{document}
%import front page
% \input{./front.tex}
%do multicols
\begin{multicols*}{4}
\setlength{\columnseprule}{0.4pt}
\footnotesize
%import tableofcontents
% \input{./tableofcontents.tex}
\input{./content/01-Binary-Search-Tree.tex}
\input{./content/02-AVL-Trees.tex}
\input{./content/03-Splay-Trees.tex}
\input{./content/04-Merge-Sort.tex}
\input{./content/05-Quick-Sort.tex}
\input{./content/06-Sorting-Lower-Bound.tex}
\input{./content/07-Radix-Sort.tex}
\input{./content/08-Pattern-Matching.tex}
\input{./content/09-Tries.tex}
\input{./content/10-Dynamic-Programming.tex}
\input{./content/11-Graph.tex}
\input{./content/12-DFS.tex}
\input{./content/13-BFS.tex}
\input{./content/14-Digraphs.tex}
\input{./content/15-Shortest-Path-Trees.tex}
\input{./content/16-Minimum-Spanning-Trees.tex}
\end{multicols*}
% \input{./appendix.tex}
\end{document}