向量
// structure for managing the entries of Vector or Matrix
typedef struct tagTEntry
{
unsigned int Index;
double Value;
tagTEntry * Next;
} TEntry;
// structure for manageing the row of Matrix
typedef struct tagTRow
{
unsigned int Number;
TEntry * FirstEntry;
TEntry * LastEntry;
tagTRow * Next;
} TRow;
个位大虾,如何用上面来实现 向量 vector 和 矩阵 matrix呀,并能够实现各种运算,给点建议呀,如果有程序就更好了呀,谢谢!!!!!!!!!!!
问题点数:20、回复次数:0Top





