I’m using Python’s max
and min
functions on lists for a minimax algorithm, and I need the index of the value returned by max()
or min()
.换句话说,我需要知道哪个动作产生了最大值(轮到第一个玩家)或最小值(第二个玩家)。
for i in range(9):
new_board = current_board.new_board_with_move([i / 3, i % 3], player)
if new_board:
temp = min_max(new_board, depth + 1, not is_min_level)
values.append(temp)
if is_min_level:
return min(values)
else:
return max(values)
我需要能够返回最小值或最大值的实际索引,而不仅仅是值。
原文由 Kevin Griffin 发布,翻译遵循 CC BY-SA 4.0 许可协议