• 大小: 408KB
    文件类型: .zip
    金币: 2
    下载: 3 次
    发布日期: 2021-11-10
  • 语言: Python
  • 标签: Python3  

资源简介

高效算法:竞赛、应试与提高必修128例,原书由法国国际信息学奥林匹克竞赛“国家队”辅导老师编写。算法中部分十分常见,但也有舞蹈链算法以及一些设计图论与匹配的算法。Python3代码实现!

资源截图

代码片段和文件信息

#!/usr/bin/env python
# -*- coding: utf-8 -*-

from distutils.core import setup

setup(name=‘tryalgo‘
      version=‘1.3.0‘
      description=‘Basic and advanced algorithms and datastructures‘
      author=‘Jill-Jênn Vie and Christoph Dürr‘
      author_email=‘christoph.durr@lip6.fr‘
      license=‘MIT‘
      url=‘http://pythonhosted.org/tryalgo/‘
      keywords=‘algorithms data-structures programming competition‘
      packages=[‘tryalgo‘]
      classifiers=[
    ‘Development Status :: 5 - Production/Stable‘

    # Indicate who your project is intended for
    ‘Intended Audience :: Developers‘
    ‘Topic :: Software Development :: Build Tools‘

    # Pick your license as you wish (should match “license“ above)
     ‘License :: OSI Approved :: MIT License‘

    # Specify the Python versions you support here. In particular ensure
    # that you indicate whether you support Python 2 Python 3 or both.
    ‘Programming Language :: Python :: 2‘
    ‘Programming Language :: Python :: 3‘
]
     )

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2018-09-13 13:44  tryalgo-master\
     文件          77  2018-09-13 13:44  tryalgo-master\.gitignore
     文件         913  2018-09-13 13:44  tryalgo-master\.travis.yml
     文件         259  2018-09-13 13:44  tryalgo-master\CHANGELOG.md
     文件        1081  2018-09-13 13:44  tryalgo-master\LICENSE
     文件        2078  2018-09-13 13:44  tryalgo-master\MANIFEST
     文件        1608  2018-09-13 13:44  tryalgo-master\README.md
     目录           0  2018-09-13 13:44  tryalgo-master\docs\
     文件        7456  2018-09-13 13:44  tryalgo-master\docs\Makefile
     目录           0  2018-09-13 13:44  tryalgo-master\docs\_static\
     文件       34731  2018-09-13 13:44  tryalgo-master\docs\_static\example_dijkstra.png
     文件        1375  2018-09-13 13:44  tryalgo-master\docs\_static\example_dijkstra.tex
     文件        7442  2018-09-13 13:44  tryalgo-master\docs\_static\logo_white.png
     文件        9509  2018-09-13 13:44  tryalgo-master\docs\conf.py
     文件       28852  2018-09-13 13:44  tryalgo-master\docs\content.rst
     文件        1565  2018-09-13 13:44  tryalgo-master\docs\example_dijkstra.py
     文件        5015  2018-09-13 13:44  tryalgo-master\docs\index.rst
     文件           7  2018-09-13 13:44  tryalgo-master\docs\requirements.txt
     目录           0  2018-09-13 13:44  tryalgo-master\docs\tryalgo\
     文件          58  2018-09-13 13:44  tryalgo-master\docs\tryalgo\modules.rst
     文件       12536  2018-09-13 13:44  tryalgo-master\docs\tryalgo\tryalgo.rst
     目录           0  2018-09-13 13:44  tryalgo-master\examples\
     文件       14866  2018-09-13 13:44  tryalgo-master\examples\TryAlgo Maps in Paris.ipynb
     文件      630454  2018-09-13 13:44  tryalgo-master\examples\paris.txt
     文件        7123  2018-09-13 13:44  tryalgo-master\examples\pathfinding_in_paris.html
     文件          39  2018-09-13 13:44  tryalgo-master\examples\requirements.txt
     文件        1024  2018-09-13 13:44  tryalgo-master\setup.py
     目录           0  2018-09-13 13:44  tryalgo-master\tests\
     文件         328  2018-09-13 13:44  tryalgo-master\tests\__init__.py
     文件       67376  2018-09-13 13:44  tryalgo-master\tests\test_tryalgo.py
     目录           0  2018-09-13 13:44  tryalgo-master\tryalgo\
............此处省略84个文件信息

评论

共有 条评论