From c09586373003db70b4366a6d110ac38f3bee7b2c Mon Sep 17 00:00:00 2001 From: Paul Jungeblut Date: Fri, 21 Aug 2015 17:00:53 +0200 Subject: Adding a little helper note to Floyd Warshall. --- graph/graph.tex | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'graph/graph.tex') diff --git a/graph/graph.tex b/graph/graph.tex index 04bb93e..38deee6 100644 --- a/graph/graph.tex +++ b/graph/graph.tex @@ -20,7 +20,10 @@ Kürzestes Pfade in Graphen mit negativen Kanten. Erkennt negative Zyklen. \subsubsection{\textsc{Floyd-Warshall}-Algorithmus} Alle kürzesten Pfade im Graphen. \lstinputlisting{graph/floydWarshall.cpp} -\textsc{Floyd-Warshall} findet auch negative Kreise. Es existiert genau dann ein negativer Kreis, wenn \lstinline{dist[i][i] < 0} ist. +\begin{itemize} + \item \textsc{Floyd-Warshall} findet auch negative Kreise. Es existiert genau dann ein negativer Kreis, wenn \lstinline{dist[i][i] < 0} ist. + \item Evtl. überschreibt die Eingabe die Nullen auf der Hauptdiagonalen. +\end{itemize} \subsection{Strongly Connected Components (\textsc{Tarjans}-Algorithmus)} \lstinputlisting{graph/scc.cpp} -- cgit v1.2.3