Files
python3-cookbook/source/chapters/p01_data_structures_algorithms.rst
2014-08-31 12:05:40 +08:00

18 lines
580 B
ReStructuredText
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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