-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlgorithmen_Datenstrukturen.tex
113 lines (84 loc) · 2.82 KB
/
Algorithmen_Datenstrukturen.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, fleqn]{scrreprt}
\usepackage[ngerman]{babel}
\usepackage[utf8]{inputenc}
\usepackage[onehalfspacing]{setspace}
\usepackage[a4paper,left=2.4cm,right=1.8cm,top=2.0cm,bottom=2.5cm]{geometry}
\setlength{\parindent}{0mm}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage{footmisc}
\usepackage{lineno}
\renewcommand*{\chapterheadstartvskip}{\vspace*{.5\baselineskip}}% Abstand einstellen
\usepackage{footmisc}
\usepackage{amssymb}
\usepackage{enumitem}
\usepackage{hyperref}
\usepackage[xcolor=dvipsnames]{xcolor}
\usepackage[]{minted}
\definecolor{bg}{rgb}{0.95,0.95,0.95}
\setminted[python]{%
bgcolor=bg,
fontsize=\small,
frame=leftline,
linenos,
breaklines,
framesep=2.3\fboxsep{}
}
\usepackage{graphicx}
\usepackage{mathtools}
\DeclarePairedDelimiter\floor{\lfloor}{\rfloor}
\DeclarePairedDelimiter\ceil{\lceil}{\rceil}
\usepackage{listings}
\usepackage{array}
\usepackage{tikz}
\usepackage{slashed}
\renewcommand{\thefootnote}{}
\newcommand{\bigO}[0]{\mathcal{O}}
\usepackage{verbatim}
\renewcommand\footnotelayout{\tiny}
\usepackage{pxfonts}
\usepackage{tabularx}
\newcolumntype{L}[1]{>{\raggedright\arraybackslash}p{#1}} % linksbündig mit Breitenangabe
\newcolumntype{C}[1]{>{\centering\arraybackslash}p{#1}} % zentriert mit Breitenangabe
\newcolumntype{R}[1]{>{\raggedleft\arraybackslash}p{#1}} % rechtsbündig mit Breitenangabe
\begin{document}
\newgeometry{left=2.4cm, right=1.8cm, top=4.0cm, bottom=2.0cm}
\thispagestyle{plain}
\begin{titlepage}
\begin{center}
{\LARGE\textbf{Algorithmen und Datenstrukturen}} \medskip
{\LARGE\textbf{Sommersemester 2020}}
\vspace{3.7cm}
{\large \textit{apl.\ Prof.\ Dr.\ Ullrich Köthe}} \\[2em]
{\small Heidelberg Collaboratory for Image Processing (HCI)} \\
{\small Interdisciplinary Center for Scientific Computing (IWR)} \\
{\small Universität Heidelberg } \\
{\small Mathematikon B (Berliner Str. 43), 69120 Heidelberg} \\
\textbf{ullrich.koethe@iwr.uni-heidelberg.de}
\vspace{8cm}
Version 1.0 --- Johanna Riedel
\bigskip
Erstellt: \today
\bigskip
URL zur Vorlesung: \\
\url{https://hci.iwr.uni-heidelberg.de/teaching/iad\_ 2020}
\bigskip
Wiki zur Vorlesung: \\
\url{http://alda.iwr.uni-heidelberg.de/index.php/Main\_ Page}
\end{center}
\end{titlepage}
\restoregeometry{}
\tableofcontents
\newpage
\include{chapters/01_introduction}
\include{chapters/02_containter}
\include{chapters/03_sorting}
\include{chapters/04_correctness}
\include{chapters/05_efficiency}
\include{chapters/06_search_algorithms}
\include{chapters/07_associative_arrays}
\include{chapters/08_efficient_searching_and_sorting}
\include{chapters/09_hashtables}
\include{chapters/10_recursion}
\include{chapters/11_graphs}
\end{document}