导语:
本文主要介绍了关于python链表的乘法问题的相关知识,包括python加减乘除,以及python链表反转这些编程知识,希望对大家有参考作用。
说明
1、左乘约定为数乘,即乘以一个整数n,链表长度增加n倍。
尝试非数相乘:即两个链表相乘时,用它们的数据字段对应相乘的每个节点的值。
2、右乘法也要重载,否则右乘number*Node会报错,加一行:__rmul__=_
_
mul__。
实例
def __mul__(self, other):
if type(other) is Node:
n1,n2 = self.values,other.values
product = [p[0]*p[1] for p in zip(n1,n2)]
return Node.build(product)
if other<0 or type(other) is not int:
raise TypeError("other is a non-negetive Integer")
if other==0:return Node()
ret = self.copy()
for _ in range(1,other):
self += ret
return self
__rmul__ = __mul__
'''
>>> a = Node() + range(1,3)
>>> a * 0
Node(None->None)
>>> a * 1
Node(1->2->None)
>>> a * 2
Node(1->2->1->2->None)
>>> a * 5
Node(1->2->1->2->1->2->1->2->1->2->None)
>>>
>>> 3 * a
Node(1->2->1->2->1->2->None)
>>> a
Node(1->2->None)
>>> a *= 5
>>> a
Node(1->2->1->2->1->2->1->2->1->2->None)
>>>
>>>
>>> a = Node() + range(1,8)
>>> b = Node(2) * 7
>>> a * b
Node(2->4->6->8->10->12->14->None)
>>> b * a
Node(2->4->6->8->10->12->14->None)
>>>
'''
本文教程操作环境:windows7系统、Python 3.9.1,DELL G3电脑。
本文为原创文章,版权归知行编程网所有,欢迎分享本文,转载请保留出处!
你可能也喜欢
- ♥ 如何使用python类11/07
- ♥ 如何在 Python 中使用 sum 函数?08/13
- ♥ 是python字符串对象12/31
- ♥ python形状函数是如何使用的?08/31
- ♥ 为什么python字符不能转换为整数11/10
- ♥ 如何在 python 中不使用换行符编写多行01/07
内容反馈