Python数据结构—教案.rar
2022-07-13 11:06:42 4.89MB 教学资料
Python数据结构全文共9页,当前为第1页。Python数据结构全文共9页,当前为第1页。1 红黑树 Python数据结构全文共9页,当前为第1页。 Python数据结构全文共9页,当前为第1页。 红黑树与AVL的比较: AVL是严格平衡树,因此在增加或者删除节点的时候,根据不同情况,旋转的次数比红黑树要多; 红黑是用非严格的平衡来换取增删节点时候旋转次数的降低; 所以简单说,如果你的应用中,搜索的次数远远大于插入和删除,那么选择AVL,如果搜索,插入删除次数几乎差不多,应该选择RB。 编程题 1 台阶问题/斐波纳挈 一只青蛙一次可以跳上1级台阶,也可以跳上2级。求该青蛙跳上一个n级的台阶总共有多少种跳法。 fib = lambda n: n if n <= 2 else fib(n - 1) + fib(n - 2) 第二种记忆方法 def memo(func): cache = {} def wrap(*args): if args not in cache: cache[args] = func(*args) return cache[args] return wrap @
2022-07-11 09:04:51 42KB 文档资料
Basic Data Structures 第 1 章 基本数据结构 Objectives 学习目标 To understand the abstract data types stack, queue, deque, and list. To be able to implement the ADTs stack, queue, and deque using Python lists. To understand the performance of the implementations of basic linear data structures. To understand prefix, infix, and postfix expression formats. To use stacks to evaluate postfix expressions. To use stacks to convert expressions from infix to postfix. To use queues for basic timing simulations. To be
2022-07-11 09:04:46 1.17MB 文档资料
Python数据分析基础教程-PPT.rar
2022-07-10 16:04:09 4.61MB 教学资料
Python数据分析案例教程(慕课版)_源代码、习题答案、试卷.rar
2022-07-10 16:04:08 19.04MB 教学资料
python大数据课设可以采用此模班学习使用,需要配置环境和自己修改数据 仅做学习使用,希望大家可以更好的学习可视化
2022-07-03 00:46:36 1016KB python 源码软件 开发语言 大屏可视化
1
Python数据分析(项目式)-PPT.zip
2022-07-02 20:04:02 2.46MB 教学资料
Linux入门,适合初学者,Python数据分析,适合学习Python相关的新手朋友们。
2022-07-01 12:05:57 18.12MB Linux Python 数据分析 人工智能
1
Python数据分析_二手房房价分析与预测系统_源代码 B站功能展示video地址: https://www.bilibili.com/video/BV1xY4y1G7GU?vd_source=17a54a65e7ad5618c183f7176df0df12#reply118026854496
2022-06-29 15:41:39 3.6MB Python 数据分析 Pandas scikit-learn
1
Python数据分析与挖掘实战-教案.zip
2022-06-29 09:09:15 275KB 教学资料