[Solved] Is there VBA code of the Hungarian Algorithm (Munkres)? [closed]
Here you go: Option Base 1 Sub HungarianAlgorithm() ‘ Code rewritten and expanded by excelCoder321 for the purpose of: ‘ 1) demonstrating intermediary steps, as a companion to the detailed explanation of Munkres Algorithm at https://brc2.com/the-algorithm-workshop/ ‘ 2) allowing N>M-matrices (more rows than columns) ‘ 3) adding option to maximize costs, not just minimize them. … Read more