上传者: 42127020
|
上传时间: 2021-12-16 15:22:24
|
文件大小: 4KB
|
文件类型: -
匈牙利Python
匈牙利算法的Python实现
要求
麻木的
麻麻
用法
from hungarian import Hungarian
N = 10 # problem size
cost_matrix = np . random . random (( N , N ))
h = Hungarian ( N )
assignment , total_cost = h . execute ( cost_matrix )