矩阵逆置,三元组输出

时间:2013-06-04 05:09:15
【文件属性】:

文件名称:矩阵逆置,三元组输出

文件大小:2KB

文件格式:CPP

更新时间:2013-06-04 05:09:15

从一个二维矩阵创建一个三元组

#include using namespace std; #define M 4 #define N 3 #define maxsize 10 typedef struct { int r; int c; int d; }TupNode; typedef struct { int rows; int cols; int nums; TupNode data[maxsize]; }TSMatrix; void CreateMat(TSMatrix &t,int A[M][N]) //从一个二维矩阵创建一个三元组


网友评论