diff options
author | Mattias Andrée <maandree@operamail.com> | 2013-09-27 20:01:33 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@operamail.com> | 2013-09-27 20:01:33 +0200 |
commit | ee3f63247fbd6785550dd1c63baca89a9f8873a4 (patch) | |
tree | 569df9ede9d90a0ac6174814f1124ddd82a79809 | |
parent | unrevert (diff) | |
download | hungarian-algorithm-n3-ee3f63247fbd6785550dd1c63baca89a9f8873a4.tar.gz hungarian-algorithm-n3-ee3f63247fbd6785550dd1c63baca89a9f8873a4.tar.bz2 hungarian-algorithm-n3-ee3f63247fbd6785550dd1c63baca89a9f8873a4.tar.xz |
m readme
Signed-off-by: Mattias Andrée <maandree@operamail.com>
-rw-r--r-- | README | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -2,13 +2,13 @@ also known as the Hungarian method, Kuhn–Munkres algorithm or Munkres assignment. -The Hungarian algorithm solved the minmum bipartite -match problem in 𝓞(n⁴). By implementing the priority +The Hungarian algorithm solves the minmum bipartite +matching problem in 𝓞(n⁴). By implementing the priority queue with a van Emde Boas tree the time can be reduced to 𝓞(n³ log log n). The van Emde Boas tree is possible to use because the elements values are bounded within the priority queue's capacity. -However this implemention achived 𝓞(n³) by not using +However this implemention achives 𝓞(n³) by not using a priority queue. Edmonds and Karp, and independently Tomizawa, has |