#define M
#define N
#define MAX ( (M)>(N) ? (M) :(N) )
typedef struct mtxn {
int rows;
int cols;
struct mtxn* down, * right;
union {
ElemType vlaue;
struct mtxn* link;
}tag;
}MatNode;
稀疏矩阵的十字链表数据声明
于 2023-10-24 11:58:14 首次发布