diff options
author | Camil Staps | 2015-10-27 19:44:50 +0100 |
---|---|---|
committer | Camil Staps | 2015-10-27 19:44:50 +0100 |
commit | 1c2e2f70939c0734f06b0bc7423a1fe94250c3b9 (patch) | |
tree | 7a4d617f27bee0028dd50c78c9125e0b7d883912 /Practical1/report/analysis.tex | |
parent | Merge branch 'master' of gitolite:NWI-IBC027-Algoritmen-Datastructuren (diff) | |
parent | Correctness proofs (diff) |
Merge branch 'master' of gitolite:NWI-IBC027-Algoritmen-Datastructuren
Diffstat (limited to 'Practical1/report/analysis.tex')
-rw-r--r-- | Practical1/report/analysis.tex | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/Practical1/report/analysis.tex b/Practical1/report/analysis.tex index 32c3f8e..d796f96 100644 --- a/Practical1/report/analysis.tex +++ b/Practical1/report/analysis.tex @@ -40,12 +40,24 @@ This function is a simple case distinction. Let's therefore consider the complex & $T_{\ms}(n-3) + T_{\ms^2}(n-4,4)$ & In the first case at least three vertices removed, in the second case four, and at most four to choose two from \end{tabular} - \caption{Worst-case complexity analysis of the different cases of $\ms^1$} + \caption{Worst-case time complexity analysis of the different cases in \autoref{alg:ms1}} \label{tab:analysis-ms1} \end{table} \subsection{$\ms^2$: \autoref{alg:ms2}} \label{sec:analysis:ms2} +Also this is a simple case distinction. Let's again put the different cases in a table, along with their line numbers. See \autoref{tab:analysis-ms2}. + +\begin{table}[h] + \centering + \renewcommand{\arraystretch}{1.3} + \begin{tabular}{l | p{29mm} | p{19mm} | p{50mm}} + Ln. & Case & Complexity & Argumentation \\\hline\hline + \end{tabular} + \caption{Worst-case time complexity analysis of the different cases in \autoref{alg:ms2}} + \label{tab:analysis-ms2} +\end{table} + %todo \subsection{$\ms$: \autoref{alg:ms}} |