這期內(nèi)容當中小編將會給大家?guī)碛嘘P(guān)Python中怎么實現(xiàn)一元多項式的相加相乘運算,文章內(nèi)容豐富且以專業(yè)的角度為大家分析和敘述,閱讀完這篇文章希望大家可以有所收獲。
硯山網(wǎng)站制作公司哪家好,找創(chuàng)新互聯(lián)建站!從網(wǎng)頁設(shè)計、網(wǎng)站建設(shè)、微信開發(fā)、APP開發(fā)、響應(yīng)式網(wǎng)站建設(shè)等網(wǎng)站項目制作,到程序開發(fā),運營維護。創(chuàng)新互聯(lián)建站成立于2013年到現(xiàn)在10年的時間,我們擁有了豐富的建站經(jīng)驗和運維經(jīng)驗,來保證我們的工作的順利進行。專注于網(wǎng)站建設(shè)就選創(chuàng)新互聯(lián)建站。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("系數(shù):")) e=int(input("指數(shù):")) 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.edef multi(head1,head2):
multi_node1=head1.next
multi_node2=head2.nextadd_two=ListNode(0,0)
add_two.next=Nonewhile( multi_node1!=None):
multi0=ListNode(0,0)
multi0.next=None
head4=multi0while(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("多項式的項數(shù):"))
head1=t1.ReadandLink(N1)
N2=int(input("多項式的項數(shù):"))
head2=t2.ReadandLink(N2)
head3=add(head1,head2)
first=head3.next
print("加和結(jié)果")
while(first!=None):
print("系數(shù)=%d 指數(shù)等于%d"%(first.c,first.e))first=first.nexthead4=multi(head1,head2)
second=head4.next
print("乘積結(jié)果")
while(second!=None):print("系數(shù)=%d 指數(shù)等于%d"%(second.c,second.e)) second=second.next上述就是小編為大家分享的Python中怎么實現(xiàn)一元多項式的相加相乘運算了,如果剛好有類似的疑惑,不妨參照上述分析進行理解。如果想知道更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。
另外有需要云服務(wù)器可以了解下創(chuàng)新互聯(lián)cdcxhl.cn,海內(nèi)外云服務(wù)器15元起步,三天無理由+7*72小時售后在線,公司持有idc許可證,提供“云服務(wù)器、裸金屬服務(wù)器、高防服務(wù)器、香港服務(wù)器、美國服務(wù)器、虛擬主機、免備案服務(wù)器”等云主機租用服務(wù)以及企業(yè)上云的綜合解決方案,具有“安全穩(wěn)定、簡單易用、服務(wù)可用性高、性價比高”等特點與優(yōu)勢,專為企業(yè)上云打造定制,能夠滿足用戶豐富、多元化的應(yīng)用場景需求。
分享文章:Python中怎么實現(xiàn)一元多項式的相加相乘運算-創(chuàng)新互聯(lián)
URL鏈接:http://weahome.cn/article/decsgs.html