我正在用C ++做一个多项式程序,我们应该用单链表实现。是的,这是一个功课。我已经完成了大部分程序,我只是坚持我的乘法运算符重载。这是我的操作员*功能:
LinkedList operator*(const LinkedList& a, const LinkedList& b)
{
LinkedList product;
Node* nodeA = a.head;
Node* nodeB = b.head;
int coeff, powr;
if (nodeA == NULL && nodeB == NULL)
return product;
else if (nodeA == NULL && nodeB != NULL)
return b;
else if (nodeA != NULL && nodeB == NULL)
return a;
else {
while (nodeA != NULL) {
while (nodeB != NULL) {
coeff = nodeA->getCoeff() * nodeB->getCoeff();
powr = nodeA->getPow() + nodeB->getPow();
product.addElement(coeff, powr);
nodeB = nodeB->getNext();
}
nodeB = b.head;
nodeA = nodeA->getNext();
}
}
return product;
}
作为参考,我现在只是在链接列表的末尾添加一个新元素。
这是我的AddElement函数:
void LinkedList::addElement(int coeff, int powr)
{
Node *newNode = new Node();
// Set the Node's data
newNode->setPowAndCoefficient(coeff, powr);
newNode->setNextNode(NULL);
Node *temp = head;
if (temp != NULL) {
// Go to the last element of the list
while (temp->getNext() != NULL) {
temp = temp->getNext();
}
// temp is now the last element and its next element is null
// Set temp's next node to be the newNode
temp->setNextNode(newNode);
}
else
head = newNode;
}
Node只是我的类,私有数据成员coefficent,power和指向下一个节点的指针。 LinkedList是我的主类,包括一个私有Node *头成员和公共运算符重载函数和几个构造函数。这里使用的构造函数是默认构造函数,我在其中将head设置为NULL。
我在第二个while循环之后放了一些cout语句,然后我乘以两个多项式来测试我的乘法函数。
所以在这种情况下,我在main.cpp文件中有这个代码:
LinkedList poly1, poly2, result;
// The first polynomial: 3x^3 + 7x^2 - 7
poly1.addElement(3, 3);
poly1.addElement(7, 2);
poly1.addElement(-7, 0);
cout << "Polynomial A: " << poly1 << endl;
// The second polynomial: -5x^5 - 14x^3 + 7x^2 + 14
poly2.addElement(-5, 14);
poly2.addElement(-14, 3);
poly2.addElement(7, 2);
poly2.addElement(14, 0);
cout << "Polynomial B: " << poly2 << endl;
此外,&lt;&lt;重载运算符工作正常,并显示链表很好。 问题是当我尝试这样做时:
result = poly1 * poly2;
我遇到了分段错误。我不知道为什么。正如我所说,我将cout语句放在第一个while循环中,这就是我在执行poly1 * poly2时得到的结果:
-15x^17 - 42x^6 + 21x^5 + 42x^3 - 35x^16 - 98x^5 + 49x^4 + 98x^2 + 35x^14 + 98x^3 - 49x^2 - 98
[1] 39009 segmentation fault ~/Desktop/run
是的,它非常难看,但这是在我将所有这些东西加在一起之前。但无论如何,它基本上是正确的。我在评估最后一个常量后才得到分段错误。
我不知道它为什么会这样做,它只为multiply运算符执行此操作。其他的东西工作正常。我可能在某个地方有一个错误,过去几个小时我都在找它,但我不知道我做错了什么。有人可以帮忙吗?
感谢。
我的节点类:
class Node {
private:
int power;
int coefficient;
Node *next;
public:
Node(); // in implementation: coeff = 0, power = 0, next = NULL;
Node(const int coeff, const int powr = 1);
void setPowAndCoefficient(const int coeff, const int powr);
inline int getPow() const { return power; };
inline int getCoeff() const { return coefficient; };
inline void setNextNode(Node *aNode) { next = aNode; };
inline Node *getNext() const { return next; };
};
Node::Node()
{
coefficient = 0;
power = 1;
next = NULL;
}
Node::Node(const int coeff, const int powr)
{
coefficient = coeff;
power = powr;
next = NULL;
}
void Node::setPowAndCoefficient(const int coeff, const int powr)
{
coefficient = coeff;
power = powr;
next = NULL;
}
答案 0 :(得分:2)
哥们, 我有点懒得阅读整个帖子.. 但是这里我将如何乘以两个多项式..
LinkedList operator*(const LinkedList& a, const LinkedList& b){
int coef,pow;
LinkedList temp = new LinkedList();
for(node * a1 = a->head;a1!=NULL;a1=a1->next)
for(node * b1 = b->head;b1!=NULL;b1=b1->next){
coef = a1->getCoeff() * b1-> getCoeff();
pow = a1->getPow()+b1->getPow();
node ab = new node(coef,pow);//Writting it java style, cant remember if this is how u //declare objects in c++ :(
temp.addNode(ab);
}
return temp;
}
如果它对你没有帮助我很抱歉..但我想向你提出一个想法。