Fixed GA3 latex

This commit is contained in:
Claudio Maggioni 2019-05-10 12:08:21 +02:00
parent 3876eb5208
commit 4bca4b25ac
2 changed files with 6 additions and 3 deletions

Binary file not shown.

View File

@ -8,6 +8,7 @@
\title{Graded Assignment 3 -- DSA}
\author{Claudio Maggioni}
\setlength{\parindent}{0cm}
% listings configuration
\lstset{
@ -354,8 +355,10 @@ Insert 2:
10R 12B 15B
/
14R
\end{verbatim}
}
\end{verbatim}%
}%
%
Assume every empty branch has as a child a black leaf node.
\subsection{Point B}
@ -394,7 +397,7 @@ FUNCTION JOIN-INTERVALS(X)
n $\gets$ n + 1
X.length $\gets$ 2 * n
\end{lstlisting}
\\
%
The complexity of this algorithm is $O(n\log(n))$ since the sorting is in $\Theta(n\log(n))$ and the
union operation afterwards is $\Theta(n)$.