Files
python3-cookbook/source/chapters/p01_data_structures_algorithms.rst

19 lines
620 B
ReStructuredText
Raw Normal View History

2014-08-20 16:13:20 +08:00
=============================
第一章:数据结构和算法
=============================
Python provides a variety of useful built-in data structures, such as lists, sets, and dictionaries.
For the most part, the use of these structures is straightforward. However,
common questions concerning searching, sorting, ordering, and filtering often arise.
Thus, the goal of this chapter is to discuss common data structures and algorithms
involving data. In addition, treatment is given to the various data structures contained
in the collections module.
Contents:
.. toctree::
:maxdepth: 1
:glob:
2014-08-20 18:02:57 +08:00
../c01/*