-
Notifications
You must be signed in to change notification settings - Fork 0
/
Appunti Algorithm design.tex
57 lines (48 loc) · 1.22 KB
/
Appunti Algorithm design.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
\documentclass[11pt]{article}
\usepackage{graphicx}
\usepackage{hyperref}
\usepackage{xcolor}
\usepackage{float}
\usepackage{fancyvrb}
\usepackage{amsmath}
\usepackage{amssymb}
\usepackage[margin=0.70in]{geometry}
\usepackage[ruled,vlined]{algorithm2e}
\usepackage{subcaption}
\usepackage{spverbatim}
\usepackage[mathletters]{ucs}
\usepackage[utf8x]{inputenc}
\usepackage{fancyhdr}
\usepackage{enumitem}
\pagestyle{fancy}
\fancyhf{}
\rhead{Giulio Serra 1904089, Matteo Salvino 1708108}
\lhead{AD 20/21}
\fvset{tabsize=4}
\iffalse
\title{%
Algorithm Design \\
\large 2020-2021}
\author{Giulio Serra - Matteo Salvino}
\date{January 10, 2020}
\fi
\graphicspath{ {images/} }
\newenvironment{claim}[1]{\par\textbf{Claim}\space#1}{}
\newenvironment{proof}[1]{\par\textit{Proof}\space#1}{\hfill\ensuremath{\square}}
\begin{document}
\tableofcontents
%\maketitle
%\pagebreak
%\tableofcontents
%\pagebreak
\input{sections/stable-matching}
\input{sections/asymptotic-order-growth}
\input{sections/greedy}
\input{sections/dynamic-programming}
\input{sections/network-flow}
\input{sections/randomized-algorithms}
\input{sections/negative-patterns}
\input{sections/np}
\input{sections/approximation}
\input{sections/linear-programming}
\end{document}