C++关于结构体链表的指针访问问题 5
代码如下:#include<iostream>usingnamespacestd;typedefstructPol{doublexi;intzhi;Pol*next;}*...
代码如下:
#include<iostream>
using namespace std;
typedef struct Pol{
double xi;
int zhi;
Pol *next;
}*Duo;
struct jie{
Pol * tou, wei;
int len;
};
void main()
{
using namespace std;
cout << "请依次输入第一个多项式的系数和指数(以回车结束):"<<endl;
cin>> (*Duo).xi;
cin>> Duo.zhi;
cin >> next->xi;
}
如题,链表是如何创建起来的,上面的代码应该如何修改。本程序的问题背景是关于链表存储多项式,然后进行降幂排序。 展开
#include<iostream>
using namespace std;
typedef struct Pol{
double xi;
int zhi;
Pol *next;
}*Duo;
struct jie{
Pol * tou, wei;
int len;
};
void main()
{
using namespace std;
cout << "请依次输入第一个多项式的系数和指数(以回车结束):"<<endl;
cin>> (*Duo).xi;
cin>> Duo.zhi;
cin >> next->xi;
}
如题,链表是如何创建起来的,上面的代码应该如何修改。本程序的问题背景是关于链表存储多项式,然后进行降幂排序。 展开
1个回答
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询