gpt4 book ai didi

递归函数中的 Python yield 语句问题?

转载 作者:塔克拉玛干 更新时间:2023-11-03 04:45:50 24 4
gpt4 key购买 nike

现在,我学习如何在 python 程序中使用 yield。所以我想在 python 中实现 word permutation

def permuteArr(arr, index=0):
'''(list, int) -> list

Get all the permutation of the elements in list.
>>> arr = ['a', 'b', 'c']
>>> for val in permuteArr(arr):
print val
'''
if index == len(arr):
yield arr
else:
for idx in range(index, len(arr)):
arr[idx], arr[index] = arr[index], arr[idx]
for val in permuteArr(arr, idx+1):
yield val
arr[idx], arr[index] = arr[index], arr[idx]

if '__name__' == '__main__':
arr = ['a', 'b', 'c']
for val in permuteArr(arr, 0):
print val

但是,我在window下的python shell中运行,结果不正确。只有四个结果。

>>> for v in permuteArr(['a', 'b', 'c']):
print v

['a', 'b', 'c']
['a', 'c', 'b']
['b', 'a', 'c']
['c', 'b', 'a']

我在使用 yield 时或在我的程序中有什么问题吗?

最佳答案

在循环中 for val in permuteArr(arr, idx+1):idx + 1 替换为 index + 1

关于递归函数中的 Python yield 语句问题?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24236617/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com