forked from maandree/hungarian-algorithm-n3
-
Notifications
You must be signed in to change notification settings - Fork 0
O(n³) implementation of the Hungarian algorithm [weird, cannot use any UCS character on this line]
License
Unknown, Unknown licenses found
Licenses found
Unknown
LICENSE
Unknown
COPYING
JackCXY/hungarian-algorithm-n3
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
𝓞(n³) implementation of the Hungarian algorithm, also known as the Hungarian method, Kuhn–Munkres algorithm or Munkres assignment. 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 achives 𝓞(n³) by not using a priority queue. Edmonds and Karp, and independently Tomizawa, has also reduced the time complexity to 𝓞(n³), but I do not known how.
About
O(n³) implementation of the Hungarian algorithm [weird, cannot use any UCS character on this line]
Resources
License
Unknown, Unknown licenses found
Licenses found
Unknown
LICENSE
Unknown
COPYING
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- C 93.4%
- Makefile 6.6%