让你Python到很爽的加速递归函数的装饰器


Posted in Python onMay 26, 2019

今天我们会讲到一个[装饰器]

注记:链接“装饰器”指Python3教程中的装饰器教程。可以在这里快速了解什么是装饰器。

@functools.lru_cache——进行函数执行结果备忘,显著提升递归函数执行时间。

示例:寻找宝藏。在一个嵌套元组tuple或列表list中寻找元素'Gold Coin'

import time
from functools import lru_cache
def find_treasure(box):
 for item in box:
  if isinstance(item, (tuple, list)):
   find_treasure(item)
  elif item == 'Gold Coin':
   print('Find the treasure!')
   return True
start = time.perf_counter()
find_treasure(('sth', 'sth', 'sth',
    ('Bad Coin', 'normal coin', 'fish', 'sth', 'any sth'),
    ('Bad Coin', 'normal coin', 'fish', 'sth', 'any sth'),
    'Gold Coin', ))
end = time.perf_counter()
run_time_without_cache = end - start
print('在没有Cache的情况下,运行花费了{} s。'.format(run_time_without_cache))
@lru_cache()
def find_treasure_quickly(box):
 for item in box:
  if isinstance(item, (tuple, list)):
   find_treasure(item)
  elif item == 'Gold Coin':
   print('Find the treasure!')
   return True
start = time.perf_counter()
find_treasure_quickly(('sth', 'sth', 'sth',
      ('Bad Coin', 'normal coin', 'fish', 'sth', 'any sth'),
      ('Bad Coin', 'normal coin', 'fish', 'sth', 'any sth'),
      'Gold Coin', ))
end = time.perf_counter()
run_time_with_cache = end - start
print('在有Cache的情况下,运行花费了{} s。'.format(run_time_with_cache))
print('有Cache比没Cache快{} s。'.format(float(run_time_without_cache-run_time_with_cache)))

最终输出

Find the treasure!
在没有Cache的情况下,运行花费了0.0002182829999810565 s。
Find the treasure!
在有Cache的情况下,运行花费了0.00011638000000857573 s。
有Cache比没Cache快0.00010190299997248076 s。

注记:运行这个示例时我的电脑配置如下

CPU:AMD Ryzen 5 2600
RAM:Kingston HyperX 8Gigabytes 2666

约使用7个月。

这个装饰器可以在函数运行时记录它的输入值与运行结果。当元组('Bad Coin', 'normal coin', 'fish', 'sth', 'any sth')出现第二次时,加了这个装饰器的函数find_the_treasure_quickly不会再次在递归时对这个元组进行查找,而是直接在“备忘录”中找到运行结果并返回!

总结

以上所述是小编给大家介绍的让你Python到很爽的加速递归函数的装饰器,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对三水点靠木网站的支持!

Python 相关文章推荐
Python安装使用命令行交互模块pexpect的基础教程
May 12 Python
Python selenium 三种等待方式解读
Sep 15 Python
Python实现输出程序执行进度百分比的方法
Sep 16 Python
Python实现合并同一个文件夹下所有PDF文件的方法示例
Apr 28 Python
Python将多个list合并为1个list的方法
Jun 27 Python
python实现将读入的多维list转为一维list的方法
Jun 28 Python
Python使用sort和class实现的多级排序功能示例
Aug 15 Python
Python实现全排列的打印
Aug 18 Python
python求质数的3种方法
Sep 28 Python
python实现读取excel文件中所有sheet操作示例
Aug 09 Python
VSCode中自动为Python文件添加头部注释
Nov 14 Python
python ssh 执行shell命令的示例
Sep 29 Python
Django框架模板的使用方法示例
May 25 #Python
Django框架搭建的简易图书信息网站案例
May 25 #Python
Django框架实现的分页demo示例
May 25 #Python
Flask框架工厂函数用法实例分析
May 25 #Python
Python中Numpy mat的使用详解
May 24 #Python
Python中Numpy ndarray的使用详解
May 24 #Python
numpy数组之存取文件的实现示例
May 24 #Python
You might like
举例详解PHP脚本的测试方法
2015/08/05 PHP
php中array_fill函数的实例用法
2021/03/02 PHP
js显示时间 js显示最后修改时间
2013/01/02 Javascript
js函数排序的实例代码
2013/07/01 Javascript
jQuery图片轮播的具体实现
2013/09/11 Javascript
JS中prototype的用法实例分析
2015/03/19 Javascript
javascript实现table表格隔行变色的方法
2015/05/13 Javascript
jQuery模拟原生态App上拉刷新下拉加载更多页面及原理
2015/08/10 Javascript
纯js模仿windows系统日历
2017/02/04 Javascript
JavaScript实现左右下拉框动态增删示例
2017/03/09 Javascript
使用Angular CLI进行单元测试和E2E测试的方法
2018/03/24 Javascript
解决vue props 拿不到值的问题
2018/09/11 Javascript
JavaScript中AOP的实现与应用
2019/05/06 Javascript
微信小程序修改数组长度的问题的解决
2019/12/17 Javascript
Node.js中文件系统fs模块的使用及常用接口
2020/03/06 Javascript
vue打开其他项目页面并传入数据详解
2020/11/25 Vue.js
[02:31]2014DOTA2国际邀请赛2009专访:干爹表现出乎意料 看好DK杀回决赛
2014/07/20 DOTA
Python+Django在windows下的开发环境配置图解
2009/11/11 Python
python类继承与子类实例初始化用法分析
2015/04/17 Python
Windows下Anaconda2安装NLTK教程
2018/09/19 Python
python getpass实现密文实例详解
2019/09/24 Python
Python标准库itertools的使用方法
2020/01/17 Python
在TensorFlow中屏蔽warning的方式
2020/02/04 Python
python实现根据给定坐标点生成多边形mask的例子
2020/02/18 Python
利用Python pandas对Excel进行合并的方法示例
2020/11/04 Python
全球速卖通西班牙站:AliExpress西班牙
2017/10/30 全球购物
飞利浦法国官网:Philips法国
2019/07/10 全球购物
Java语言程序设计测试题改错题部分
2014/07/22 面试题
工业自动化专业毕业生推荐信
2013/11/18 职场文书
法制演讲稿
2014/09/10 职场文书
领导班子奢靡之风查摆问题及整改措施
2014/09/27 职场文书
党员对照检查剖析材料
2014/10/13 职场文书
公司年夜饭通知
2015/04/25 职场文书
2015年林业工作总结
2015/05/14 职场文书
2015银行年终工作总结范文
2015/05/26 职场文书
Django 如何实现文件上传下载
2021/04/08 Python