summaryrefslogtreecommitdiff
path: root/graph/graph.tex
diff options
context:
space:
mode:
Diffstat (limited to 'graph/graph.tex')
-rw-r--r--graph/graph.tex5
1 files changed, 4 insertions, 1 deletions
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}