求帮忙将C++代码转换成Python语言

#include<iostream>usingnamespacestd;structnode{intzhi;intxi;node*next;};voidinput(nod... #include<iostream>
using namespace std;
struct node{
int zhi;
int xi;
node *next;
};
void input(node *p);
node* sum(node *p,node *u);
node* mult(node *p,node *u);
void print(node *p);
int main(){
struct node *a=new node;
input(a);
struct node *b=new node;
input(b);
print(sum(a,b));
//mult(a,b);
print(mult(a,b));
return 0;
}
void input(node *p)
{
p->next=NULL;
node *u=new node;
while(cin>>u->xi>>u->zhi)
{
if(u->xi==0)break;
p->next=u;
u->next=NULL;
p=u;
u=new node;
}
}
node* sum(node *p,node *u)
{
node *a,*b,*l;
node *h=new node;
h->next=NULL;
l=h;
a=p->next;b=u->next;
while(a!=NULL&&b!=NULL)
{
if(a->zhi>b->zhi)
{
node *m=new node;
m->zhi=a->zhi;
m->xi=a->xi;
m->next=NULL;
l->next=m;
l=m;
a=a->next;
}
else if(a->zhi<b->zhi)
{
node *m=new node;
m->zhi=b->zhi;
m->xi=b->xi;
m->next=NULL;
l->next=m;
l=m;
b=b->next;
}
else
{
if(a->xi+b->xi!=0)
{
node *m=new node;
m->xi=a->xi+b->xi;
m->zhi=a->zhi;
m->next=NULL;
l->next=m;
l=m;
b=b->next;
a=a->next;
}
else
{
b=b->next;
a=a->next;
}
}
}
if(a==NULL&&b!=NULL){
while(b!=NULL)
{
node *m=new node;
m->xi=b->xi;
m->zhi=b->zhi;
m->next=NULL;
l->next=m;
l=m;
b=b->next;
}
}
else if(a!=NULL&&b==NULL){
while(a!=NULL)
{
node *m=new node;
m->xi=a->xi;
m->zhi=a->zhi;
m->next=NULL;
l->next=m;
l=m;
a=a->next;
}
}
return h;
}
node* mult(node *p,node *u)
{
int i=0;
node *a=p->next,*b=u->next,*d;
node *t=new node;
t->next=NULL;
d=t;
node *y=new node;
node *r=new node;
r->zhi=0;
r->xi=0;
r->next=NULL;
y->next=r;
while(a!=NULL)
{
b=u->next;
d=t;
while(b!=NULL)
{
node *c=new node;
c->zhi=a->zhi+b->zhi;
c->xi=a->xi*b->xi;
c->next=NULL;
d->next=c;
d=c;
b=b->next;
}
//print(t);
y=sum(y,t);//ÕâÀï³ö´í
//print(sum(g,t));
a=a->next;
}
return y;
}
void print(node *p)
{
node *u;
for(u=p->next;u!=NULL;u=u->next)
{
if(u->xi!=1&&u->xi!=-1&&u->xi!=0)cout<<u->xi;
else if(u->xi==-1)cout<<"-";
else if(u->zhi==0&&u->xi!=0)cout<<u->xi;
if(u->zhi>1)cout<<"x^"<<u->zhi;
else if(u->zhi==1)cout<<"x";
if(u->next!=NULL&&u->next->xi>0)cout<<"+";
}
cout<<endl;
}
展开
 我来答
DoramiHe
2018-11-06 · 知道合伙人互联网行家
DoramiHe
知道合伙人互联网行家
采纳数:25332 获赞数:59545
2011年中山职业技术学院毕业,现担任毅衣公司京东小二

向TA提问 私信TA
展开全部
# coding=gb2312
def Decrypt(s):
newlen=len(s)
lpTargetData=[0]*int(newlen/2)
lpSourceData =s.encode(encoding="gb2312")
newlen=int(newlen/2)
result=""
try:
for i in range(0,newlen):
lpTargetData[i]=bytes(((lpSourceData[i*2]-ord('A'))*16)+(lpSourceData[i*2]|1-ord('A')))
result=''.join(bytes.decode(lpTargetData[i],"gb2312"))
except e:
print(e)
return "decode error"
else:
return result
print(Decrypt('hello'))
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式