From ebe689c25da275a42cfb4fa2fe65f75959128f89 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Wed, 18 May 2022 22:59:39 +0200 Subject: [PATCH] feat: appendix and thanks Signed-off-by: Matej Focko --- thesis.tex | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/thesis.tex b/thesis.tex index 5c09da5..58620e3 100644 --- a/thesis.tex +++ b/thesis.tex @@ -66,7 +66,7 @@ In this bachelor thesis, we demonstrate the usage of a rank for implementing balanced binary search trees and algorithms related to a specific rank-balanced tree, the weak AVL tree. In the first part of the thesis, we present commonly used balanced search trees. In the second part, we describe the rank-balanced tree, followed by a comparison to other balanced trees that can be implemented using rank, and also diagrams and pseudocodes related to the weak AVL tree. We also present an implementation of the weak AVL tree in Python, tested with property-based testing. The final part of the thesis is a web page that allows performing operations on the weak AVL tree with animations and a step-by-step walkthrough of pseudocode. }, thanks = {% - \textit{TBD} + First, I would like to thank my advisor, Ivana Černá, for her support, valuable suggestions and patience during the writing of this thesis. Secondly, I want to thank my friends and family for their support. Last but not least, I would like to thank Elice and Villain Village for being in the background while I was losing my mind over web development. }, bib = bibliography.bib, %% Uncomment the following line (by removing the %% at the @@ -139,8 +139,18 @@ \include{visualization} \include{summary} +\printbibliography + \appendix %% Start the appendices. -\chapter{An appendix} -Here you can insert the appendices of your thesis. +\chapter{Source code} +The source code can be found in the appendix of this thesis as \texttt{wavl.zip}. It consists of the following directories: + +\begin{itemize} + \item \texttt{python}, which contains the implementation in the Python. + \item \texttt{thesis}, which contains the source code of this thesis. + \item \texttt{web}, which contains the implementation of the web page. +\end{itemize} + +Contents of the \texttt{wavl.zip} is also present at \url{https://fi.muni.cz/~xfocko/wavl}. \end{document}