summaryrefslogtreecommitdiff
path: root/LectureNotesOnPython.rst
diff options
context:
space:
mode:
authorHui Lan <lanhui@zjnu.edu.cn>2019-04-28 21:08:35 +0800
committerHui Lan <lanhui@zjnu.edu.cn>2019-04-28 21:08:35 +0800
commit2e1cab9bbb4aea8ddadef5b60ff197fcb9616f9b (patch)
tree9bea9ce5a97bbce649135c8e91ce6982767d4996 /LectureNotesOnPython.rst
parentc6fb71c8f4d4bd164a00cffe5bbb0dcab691f8de (diff)
说明递归方式改写selection_sort在L长度很大时会遇到stack不够的问题
Diffstat (limited to 'LectureNotesOnPython.rst')
-rw-r--r--LectureNotesOnPython.rst4
1 files changed, 4 insertions, 0 deletions
diff --git a/LectureNotesOnPython.rst b/LectureNotesOnPython.rst
index 8223567..36a1eb3 100644
--- a/LectureNotesOnPython.rst
+++ b/LectureNotesOnPython.rst
@@ -1513,6 +1513,10 @@ Memo
+注意以上的代码在L的长度很大(1000可以,10000不可以)的时候会用尽所有stack。
+
+
+
类 class 与 对象 object
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~