I'm trying to write code for an orthogonal linked sparse matrix.
Here's the question:
An alternative linked representation for sparse matrices uses nodes that have the fields down, right, row, col, and value. Each non-zero entry of the sparse matrix is represented
by a node. The zero terms are not explicitly stored. The nodes are linked together to form two circular lists. The rst list, the row list, is made up by linking nodes by rows and within rows by columns using the right field. The second,list, the column list, is made up by linking nodes via the down field. In this list, nodes are linked by columns and within columns by rows. These two lists share a common header node. In addition, a node is added to the dimensions of the matrix.
The input file looks like this:
// Matrix A
4 4 7
1 1 2
1 4 1
2 2 7
3 1 9
3 3 8
4 2 4
4 3 5
// Matrix B
4 4 5
1 3 4
2 1 6
2 3 3
3 2 5
4 4 9
This is my code for the operator>>:
istream& operator>>(istream& in, OrthogonalLinkedSparseMatrix& x){
in >> x.numRows >> x.numCols >> x.numTerms;
in >> x.currentNode->row >> x.currentNode->col >> x.currentNode->value;
x.push_back(x.currentNode);
if((x.currentNode->row == 1)&&(x.currentNode->col == 1)){
x.hnode->right = x.currentNode;
x.hnode->down = x.currentNode;
}
if(x.currentNode->col == 1){
x.hnode->down = x.currentNode;
}
if(x.currentNode->row == 1){
x.hnode->right = x.currentNode;
}
for (int i = 2; i <= x.numTerms; i++) {
in >> x.currentNode->row >> x.currentNode->col >> x.currentNode->value;
x.push_back(x.currentNode);
}
return in;
}
It compiles fine. But when I try running it, I keep getting a segmentation fault error.
Can anyone help??
Thanks a bunch!
Here's OrthogonalLinkedSparseMatrix.h:
#ifndef O_L_SPARSE_MATRIX_H
#define O_L_SPARSE_MATRIX_H
#include <iostream>
#include <fstream>
#include "node.h"
#include "myExceptions.h"
using namespace std;
class OrthogonalLinkedSparseMatrix;
ostream& operator<< (ostream&, OrthogonalLinkedSparseMatrix&);
istream& operator>> (istream&, OrthogonalLinkedSparseMatrix&);
class OrthogonalLinkedSparseMatrix{
public:
friend ostream& operator<<(ostream& out, OrthogonalLinkedSparseMatrix& x);
friend istream& operator>>(istream& in, OrthogonalLinkedSparseMatrix& x);
OrthogonalLinkedSparseMatrix(){}
~OrthogonalLinkedSparseMatrix(){}
void transpose(OrthogonalLinkedSparseMatrix &b);
void add(OrthogonalLinkedSparseMatrix &a, OrthogonalLinkedSparseMatrix &c);
void push_back(matrixNode *&mat_Node);
void setDowns(matrixNode *&mat_Node);
private:
matrixNode *hnode;
int numRows, numCols, numTerms;
matrixNode *currentNode;
matrixNode *previousNode;
matrixNode *nextNode;
};
// code for operator >> & <<, etc goes here, but everything's commented out except operator >>
#endif
EDIT: I'm including operator<< as well:
ostream& operator<<(ostream& out, OrthogonalLinkedSparseMatrix& x){
if(x.numTerms == 0){
out << "No non-zero terms" << endl;
return out;
}
out << x.numRows << x.numCols << x.numTerms << endl;
for (int i = 0; i < x.numTerms; i++) {
out << x.currentNode->row << x.currentNode->col << x.currentNode->value << endl;
}
return out;
}
OrthogonalLinkedSparseMatrixcreated/setup before callingoperator>>on it? Is the currentNode pointer correctly assigned to an allocated object? – JaredC Feb 27 '11 at 18:54OrthogonalLinkedSparseMatrix *currentNode;– Ariana Habbaba Feb 27 '11 at 19:16OrthogonalLinkedSparseMatrix– Ariana Habbaba Feb 27 '11 at 19:18currentNodeis a pointer toOrthogonalLinkedSparseMatrix? Can you post the relevant parts of the declaration of OrthogonalLinkedSparseMatrix? – JaredC Feb 27 '11 at 19:21