资源简介

《数据结构与算法:Python描述》的英文版pdf+习题提示+示例源码

资源截图

代码片段和文件信息

# Copyright 2013 Michael H. Goldwasser
#
# Developed for use with the book:
#
#    Data Structures and Algorithms in Python
#    Michael T. Goodrich Roberto Tamassia and Michael H. Goldwasser
#    John Wiley & Sons 2013
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation either version 3 of the License or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program.  If not see .

age = -1                    # an initially invalid choice
while age <= 0:
  try:
    age = int(input(‘Enter your age in years: ‘))
    if age <= 0:
      print(‘Your age must be positive‘)
  except (ValueError EOFError):
    print(‘Invalid response‘)

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件    6923998  2018-06-22 21:28  Data Structures and Algorithms in Python\Data Structures and Algorithms in Python.pdf

     文件      44925  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch01-hints.pdf

     文件      42346  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch02-hints.pdf

     文件      49720  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch03-hints.pdf

     文件      41241  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch04-hints.pdf

     文件      51721  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch05-hints.pdf

     文件      49350  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch07-hints.pdf

     文件      53175  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch08-hints.pdf

     文件      47911  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch09-hints.pdf

     文件      51005  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch10-hints.pdf

     文件      51708  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch11-hints.pdf

     文件      46261  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch13-hints.pdf

     文件      54751  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch14-hints.pdf

     文件      42488  2018-06-22 21:27  Data Structures and Algorithms in Python\DSAP_hints\ch15-hints.pdf

     文件       1113  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\age1.py

     文件        997  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\contains.py

     文件        991  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\count.py

     文件       1194  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\factors1.py

     文件       1076  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\factors2.py

     文件       1120  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\factors3.py

     文件       1128  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\fibonacci1.py

     文件        936  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\fibonacci2.py

     文件       1730  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\gpa1.py

     文件       1289  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\gpa2.py

     文件       1069  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\heartrate.py

     文件        954  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\range.py

     文件        937  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\scale.py

     文件       1164  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\sum1.py

     文件        946  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\sum2.py

     文件        129  2018-06-22 21:29  Data Structures and Algorithms in Python\source codes\ch01\__init__.py

............此处省略98个文件信息

评论

共有 条评论