码迷,mamicode.com
首页 > 编程语言 > 详细

python RecursionError: maximum recursion depth exceeded in comparison错误

时间:2019-01-04 10:37:11      阅读:218      评论:0      收藏:0      [点我收藏+]

标签:err   需要   ror   port   默认   style   limit   内存溢出   color   

处理快速排序,递归深度可能非常大,而系统默认的深度可能没有这么大

 

需要设置最大递归深度

 

1 import sys
2 sys.setrecursionlimit(100000)  # 这个值的大小取决你自己,最好适中即可,执行完递归再降低,毕竟递归深度太大,如果是其他未知的操作引起,可能会造成内存溢出

 

python RecursionError: maximum recursion depth exceeded in comparison错误

标签:err   需要   ror   port   默认   style   limit   内存溢出   color   

原文地址:https://www.cnblogs.com/dusihan/p/10131892.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!