-1

我正在尝试从我的链表中打印出稀疏矩阵。看起来像这样:

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;
}
4

1 回答 1

2

i并且j正在递增。这些是您需要检查的值。

您正在与哪些是最大值进行比较,row并且col永远不会达到。

于 2013-02-15T09:14:30.617 回答