65,204
社区成员
 发帖
 发帖 与我相关
 与我相关 我的任务
 我的任务 分享
 分享
struct Term
{
public:
    int    m_nDegree;
    double m_dCoef;
    Term  *m_pNext;
};
class Poly
{
private:
    Term *pHead;
private:
public:
    Poly();
    ~Poly();
    Ploy &operator + (Poly &Orig);
};