python
Arshost
这个作者很懒,什么都没留下…
展开
-
python排序算法-基数排序
def radix_sort(nums): length = len(nums) if length < 2: return 0 # size 防止利用max_value的超时,基数排序最大排序次数为长度最大的数字的长度 # 利用 num // div % mod 不断获取最后一位数字 mod, div, ans, size = 10, 1, float("-inf"), float("-inf") for num in nums: .原创 2020-11-26 16:08:45 · 231 阅读 · 0 评论 -
python类方法,静态方法,实例方法
python的类方法(classmethod),静态方法(staticmethod),实例方法常见于日常的使用。 类方法:classmethod,以@classmethod装蚀器进行修饰,必须有一个参数,惯例下是“cls”,也可以是其他名称。通过它可以调用当前类的属性和方法。类方法一般实例和类都可以调用。在python中声明一个类方法语法如下: class C: @classmethod def f(cls, arg1, arg2, ...): ... 静态方法:staticmethod,原创 2020-09-27 10:44:24 · 112 阅读 · 0 评论