?? sparse.h
字號:
/* sparse.h 030990 */
#include "constant.h"
typedef struct IntegerVector {
INDEX N;
INDEX *p;
} IntegerVector;
typedef struct SparseMatrixElement {
INDEX Row;
INDEX Col;
ELEMENTVALUETYPE Value;
struct SparseMatrixElement *RowNext;
struct SparseMatrixElement *ColNext;
} SparseMatrixElement;
typedef struct /* SparseMatrix */ {
INDEX n1;
INDEX n2;
SparseMatrixElement **RowHead;
SparseMatrixElement **ColHead;
} SparseMatrix;
#ifdef ANSIPROTO
void ErrorHalt(char *Msg);
void TransposeMatrix(SparseMatrix *Matrix);
struct IntegerVector *AllocatePermutation(INDEX Size);
void SortRowsColumns(SparseMatrix *Matrix);
BOOLEAN NearZero(ELEMENTVALUETYPE Value);
#else
void ErrorHalt();
void TransposeMatrix();
struct IntegerVector *AllocatePermutation();
void SortRowsColumns();
BOOLEAN NearZero();
#endif
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -