我正在尝试从我的链表中打印出稀疏矩阵。看起来像这样:
0 0 0 0 0 0
1 0 6 0 0 0
4 0 0 0 6 0
但为此,它只打印出 0 和里面的值。这是代码。
while (temp != NULL)
{
for (int i = 0; i < row; i++)
{
for (int j = 0; j < col; j++)
{
if ((row == (temp -> e).getRow()) && (col == (temp -> e).getCol()))
cout << temp ->e.getValue();
else
cout << "0";
}
cout << endl;
}
temp = temp -> next;
}