中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python中怎么實現一元多項式的相加相乘運算

發布時間:2021-08-07 16:07:49 來源:億速云 閱讀:261 作者:Leah 欄目:編程語言

這期內容當中小編將會給大家帶來有關Python中怎么實現一元多項式的相加相乘運算,文章內容豐富且以專業的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。

class ListNode:
def init(self, x, y):
self.c = x
self.e = y
self.next = None
class Solution:
def ReadandLink(self,N):

    self.N=N

    a0=ListNode(0,0)
    a0.next=None
    c0=a0
    for i in range(1,N+1):
        c=int(input("系數:"))
        e=int(input("指數:"))
        b0=ListNode(c,e)
        a0.next=b0
        a0=b0
    return  c0

def add(head1,head2):

   node1=head1.next
   node2=head2.next
   add0=ListNode(0,0)
   add0.next=None
   head3=add0
   while(node1!=None and node2!=None):

       if(node1.e==node2.e ):
           add1=ListNode(node1.c+node2.c,node1.e)
           add0.next=add1
           add0=add1
           node1=node1.next
           node2=node2.next

       elif(node1.e>node2.e  ):
           add1=ListNode(node1.c,node1.e)
           add0.next=add1
           add0=add1
           if(node1.next!=None):
               node1=node1.next
           else:
               node1=node1.next
               break
       elif(node1.e<node2.e):
           add1=ListNode(node2.c,node2.e)
           add0.next=add1
           add0=add1
           if(node2.next!=None):
               node2=node2.next
           else:
               node2=node2.next
               break

   while(node1==None and node2!=None):
        add1=ListNode(node2.c,node2.e)
        add0.next=add1
        add0=add1
        if(node2.next!=None):
               node2=node2.next
        else:
               break
   while(node2==None and node1!=None):
        add1=ListNode(node1.c,node1.e)
        add0.next=add1
        add0=add1
        if(node1.next!=None):
               node1=node1.next
        else:
               break        
   return head3

def multi(head1,head2):
multi_node1=head1.next
multi_node2=head2.next

add_two=ListNode(0,0)
add_two.next=None

while( multi_node1!=None):
multi0=ListNode(0,0)
multi0.next=None
head4=multi0

   while(multi_node2!=None):
       multi_c=multi_node1.c*multi_node2.c
       multi_e=multi_node1.e+multi_node2.e
       multi1=ListNode(multi_c,multi_e)
       multi0.next=multi1
       multi0 = multi1   
       multi_node2=multi_node2.next

   multi_node2=head2.next
   multi_node1=multi_node1.next
   add_two=add(add_two,head4)

return add_two

t1=Solution()
t2=Solution()
N1=int(input("多項式的項數:"))
head1=t1.ReadandLink(N1)
N2=int(input("多項式的項數:"))
head2=t2.ReadandLink(N2)
head3=add(head1,head2)
first=head3.next
print("加和結果")
while(first!=None):
print("系數=%d 指數等于%d"%(first.c,first.e))

first=first.next

head4=multi(head1,head2)
second=head4.next
print("乘積結果")
while(second!=None):

print("系數=%d 指數等于%d"%(second.c,second.e))

second=second.next

上述就是小編為大家分享的Python中怎么實現一元多項式的相加相乘運算了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

蒙山县| 黄浦区| 灵寿县| 留坝县| 锡林浩特市| 赣榆县| 仙游县| 滨海县| 吴江市| 康保县| 林芝县| 会同县| 巴林右旗| 临漳县| 丰都县| 南安市| 江孜县| 枣阳市| 临泽县| 安阳市| 从江县| 拜泉县| 宁津县| 江北区| 平泉县| 翁牛特旗| 惠州市| 普定县| 永靖县| 庄浪县| 崇信县| 长武县| 墨竹工卡县| 鄯善县| 涪陵区| 咸宁市| 繁昌县| 星子县| 文水县| 沙坪坝区| 卢湾区|