python-data-structure-cn icon indicating copy to clipboard operation
python-data-structure-cn copied to clipboard

problem-solving-with-algorithms-and-data-structure-using-python 中文版

Results 9 python-data-structure-cn issues
Sort by recently updated
recently updated
newest added

[Complexity of list.index(x) in Python](https://stackoverflow.com/questions/5913671/complexity-of-list-indexx-in-python) 这是书本身的错误, 和译者没有关系

![image](https://user-images.githubusercontent.com/42901638/74633571-dba51a80-519c-11ea-841b-c12ee50b6b01.png) 这段代码应该是放置在BinaryTree类里面的

在讲右旋转的那部分: 如果新根(C)已经有一个正确的孩子(D) 应改为如果新根已经有一个右孩子

原文:https://runestone.academy/runestone/books/published/pythonds/Recursion/Summary.html ``` Recursion is not always the answer. Sometimes a recursive solution may be more computationally expensive than an alternative algorithm. ``` 中文 ``` 递归并不总是答案。有时,递归解决方案可能比迭代算法在计算上更昂贵。 ``` an alternative algorithm 被翻译成迭代算法,明显不对,应该是“其他替代算法”的意思。

为啥命名都为驼峰命名,python中用驼峰命名很难受

已有专业译本,是北大地空学院15~16年上课的同学志愿翻译,排版也很棒。

3.23.1链表分析里面提到了第8章,但此书好像没有第八章,所以说是删减版吗

timeit 模块使用之前要调用 from timeit import Timer,否则会报错