Files
python3-cookbook/source/chapters/p01_data_structures_algorithms.rst
Carl.King 90401f8255 fix error of the code in 1.4 and 1.6, 1.10,
remove the label “content:” in index file,
add space between English and Chinese word.
2017-07-10 20:02:24 +08:00

18 lines
578 B
ReStructuredText

=============================
第一章:数据结构和算法
=============================
Python 提供了大量的内置数据结构,包括列表,集合以及字典。大多数情况下使用这些数据结构是很简单的。
但是,我们也会经常碰到到诸如查询,排序和过滤等等这些普遍存在的问题。
因此,这一章的目的就是讨论这些比较常见的问题和算法。
另外,我们也会给出在集合模块 ``collections`` 当中操作这些数据结构的方法。
.. toctree::
:maxdepth: 1
:glob:
../c01/*