新聞中心
這里有您想知道的互聯(lián)網營銷解決方案
創(chuàng)新互聯(lián)Python教程:python鏈表的乘法問題
說明

1、左乘法約定為數乘,即乘以整數n,鏈表的長度增加n倍。
嘗試非數乘的情況:即當兩個鏈表相乘時,用它們的數據域對應相乘的各個節(jié)點的值。
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)
>>>
'''以上就是python鏈表的乘法問題,希望對大家有所幫助。更多Python學習指路:創(chuàng)新互聯(lián)Python教程
本文教程操作環(huán)境:windows7系統(tǒng)、Python 3.9.1,DELL G3電腦。
文章題目:創(chuàng)新互聯(lián)Python教程:python鏈表的乘法問題
URL鏈接:http://m.fisionsoft.com.cn/article/dpohsoo.html


咨詢
建站咨詢
