摘要:
对于用list的元素为对象时,在使用in l... 阅读全文
摘要:
题目来自于HDU 4417。划分树的代码及原... 阅读全文
摘要:
本文题目与代码参考来自程序设计解题策略。题目... 阅读全文
摘要:
此博客参考了线段树从零开始。考虑读者已阅读参... 阅读全文
摘要:
由字节组成readlines函数python... 阅读全文
摘要:
集合set:unhashable type ... 阅读全文
摘要:
首先是一个最简单的计算阶乘的递归函数:def recuision(n): if(n == 1): return 1 else: return n * recuision(n... 阅读全文
摘要:
此博客参考了常用的相似度计算方法原理及实现并将里面的python2代码,改成了python3代码。1、欧几里得距离(Eucledian Distance)def Eucledian(x,y): result... 阅读全文
摘要:
1.首先要在模块的封面管理处,添加触发关键字此时你会发现,直接的URL,只会是这样:http://127.0.0.1/WeEngine0.7Release/app/index.php?i=4&c=entry&do... 阅读全文
摘要:
将所有Unicode十进制数字字符,转换成ASCII版数字字符:import unicodedata ,sysdigitmap = {c:ord('0') + unicodedata.digit(chr(c)) ... 阅读全文