>  Q&A  >  본문

python快速排序算法实现 'int' object is not iterable

巴扎黑巴扎黑2765일 전395

모든 응답(1)나는 대답할 것이다

  • PHP中文网

    PHP中文网2017-04-17 17:03:37

    谢谢 araraloren!
    哦,我找到了错误所在。一个低级错误return quicksort(forehalf)+list(numbers[0])+quicksort(endhalf)中,list(numbers[0])是非法的,应该为:return quicksort(forehalf)+[numbers[0]]+quicksort(endhalf)

    회신하다
    0
  • 취소회신하다