summaryrefslogtreecommitdiff
path: root/graph
diff options
context:
space:
mode:
authorpjungeblut <paul.jungeblut@gmail.com>2014-12-23 15:23:56 +0100
committerpjungeblut <paul.jungeblut@gmail.com>2014-12-23 15:23:56 +0100
commit11069ea293bdbbab152a1f1e157417674426dc51 (patch)
tree9e682c948b6fab745ac7fd6d0f2e3632d2c3cbed /graph
parent09aeca3e9f1641ec3d4cf8e41ce1c37e615bd983 (diff)
parent02a5f9ae4e71f532a8619f324aa4120c36958fc4 (diff)
merge pdf
Diffstat (limited to 'graph')
-rw-r--r--graph/graph.tex3
1 files changed, 2 insertions, 1 deletions
diff --git a/graph/graph.tex b/graph/graph.tex
index 6c4b1e8..d4bf9d5 100644
--- a/graph/graph.tex
+++ b/graph/graph.tex
@@ -20,6 +20,7 @@ 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.
\subsection{Strongly Connected Components (\textsc{Tarjans}-Algorithmus)}
\lstinputlisting{graph/scc.cpp}
@@ -66,7 +67,7 @@ Finde die maximale Anzahl Pfade von $s$ nach $t$, die keinen Knoten teilen.
\item Der maximale Fluss entspricht der unterschiedlichen Pfade ohne gemeinsame Knoten.
\end{enumerate}
-\subsection{Maximal Cardinatlity Bipartite Mathcing}
+\subsection{Maximal Cardinatlity Bipartite Matching}\label{kuhn}
\lstinputlisting{graph/maxCarBiMatch.cpp}
\subsection{TSP}