Sparse Matrix (Orthogonal Linked List)
简单实现了稀疏矩阵的加法减法乘法和转置 Crosslist.h #include <iostream> using namespace std; #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define LOVERFLOW -2...
Sparse Matrix (Triple Table)
简单实现了稀疏矩阵的加法减法乘法和转置 Tsmatrix.h #include <iostream> using namespace std; #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define INFEASIBLE -1 #define LOVERFLOW -2...