diff options
| author | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-12-13 23:59:33 +0100 |
|---|---|---|
| committer | Paul Jungeblut <paul.jungeblut@gmail.com> | 2016-12-13 23:59:33 +0100 |
| commit | 1cbe65cd82fa4d9adeda37f5a125ac617cc2f066 (patch) | |
| tree | 972b1d7235c6edd631f83f8f28e006ca9baa5b71 /graph/maxCarBiMatch.cpp | |
| parent | a64f52d0086473c54291cd125e787ef52ff93983 (diff) | |
Small changes.
Diffstat (limited to 'graph/maxCarBiMatch.cpp')
| -rw-r--r-- | graph/maxCarBiMatch.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graph/maxCarBiMatch.cpp b/graph/maxCarBiMatch.cpp index 761b536..5e2314f 100644 --- a/graph/maxCarBiMatch.cpp +++ b/graph/maxCarBiMatch.cpp @@ -1,5 +1,5 @@ // Laufzeit: O(n*min(ans^2, |E|)) -vector< vector<int> > adjlist; // Von links nach rechts. +vector<vector<int>> adjlist; // Von links nach rechts. vector<int> pairs; // Der gematchte Knoten oder -1. vector<bool> visited; |
